From: Iain Patterson Date: Mon, 2 Apr 2007 07:18:42 +0000 (+0000) Subject: Don't print completions horizontally. They get messed up. X-Git-Url: http://git.iain.cx/?p=profile.git;a=commitdiff_plain;h=0df3a0bf5685e40d5651ea114e274e62ed0718d1 Don't print completions horizontally. They get messed up. 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 --- diff --git a/.inputrc b/.inputrc index b912190..7cde4ba 100755 --- 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 diff --git a/.profile.d/options.bashrc b/.profile.d/options.bashrc index 03a0ef9..2193342 100644 --- a/.profile.d/options.bashrc +++ b/.profile.d/options.bashrc @@ -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