Don't print completions horizontally. They get messed up.
authorIain Patterson <me@iain.cx>
Mon, 2 Apr 2007 07:18:42 +0000 (07:18 +0000)
committerIain Patterson <me@iain.cx>
Mon, 2 Apr 2007 07:18:42 +0000 (07:18 +0000)
Don't use nullglob.  'ls *.c' becomes the same as 'ls' when there are no .c files!

git-svn-id: https://svn.cambridge.iain.cx/profile/trunk@44 6be0d1a5-5cfe-0310-89b6-964be062b18b

.inputrc
.profile.d/options.bashrc

index b912190..7cde4ba 100755 (executable)
--- a/.inputrc
+++ b/.inputrc
@@ -11,6 +11,5 @@ set bell-style none
 set show-all-if-ambiguous on
 set completion-ignore-case off
 set mark-symlinked-directories on
-set print-completions-horizontally on
 
 \C-l: clear-screen
index 03a0ef9..2193342 100644 (file)
@@ -30,7 +30,3 @@ shopt -s no_empty_cmd_completion
 
 # The Red Hat The
 shopt -u nocaseglob
-
-# Return a null string when no matches are found for a glob, rather than the 
-# literal pattern.
-shopt -s nullglob