From 3cf1544df287b05afef6e5b6ed37db46492c1d48 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 10 Feb 2017 00:22:36 +1300 Subject: Improve and correct some comments --- bash/bashrc.d/completion.bash | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bash/bashrc.d') diff --git a/bash/bashrc.d/completion.bash b/bash/bashrc.d/completion.bash index c77f8844..ed938950 100644 --- a/bash/bashrc.d/completion.bash +++ b/bash/bashrc.d/completion.bash @@ -1,9 +1,9 @@ -# Various easy completions for Bash builtins; more specific stuff goes in -# ~/.bash_completion.d +# Simple completions for Bash builtins and POSIX utilities; more specific or +# complex stuff goes in ~/.bash_completion.d, for possible dynamic loading # If COMP_WORDBREAKS has a value, strip all colons from it; this allows -# completing filenames correctly, since an unquoted colon is not a syntactic -# character: (E13) +# completing filenames correctly, since a colon is not a shell metacharacter: +# (E13) [[ -n $COMP_WORDBREAKS ]] && COMP_WORDBREAKS=${COMP_WORDBREAKS//:} # If ~/.hosts exists, use that as the host completion file rather than -- cgit v1.2.3