diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2010-11-01 19:26:53 +0200 |
---|---|---|
committer | Ville Skyttä <ville.skytta@iki.fi> | 2010-11-01 19:29:45 +0200 |
commit | 0f450219b667ec5f8d951b0c41593c7b983e2ada (patch) | |
tree | 054f929068849317af412dc94e9db23db437fa7b /completions/man | |
parent | 494c44f5a36d29955f46efe2289d0f945a8039c5 (diff) | |
download | bash-completion-0f450219b667ec5f8d951b0c41593c7b983e2ada.tar.gz |
Remove most "-o filenames" options to "complete".
Turn it on dynamically when needed instead; see doc/styleguide.txt for
a longer explanation. This fixes many non-filename completions which
had been previously more or less broken due to unwanted
escape-as-filenames behavior.
Diffstat (limited to 'completions/man')
-rw-r--r-- | completions/man | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/completions/man b/completions/man index 6918fb41..9e5cd3a8 100644 --- a/completions/man +++ b/completions/man @@ -69,7 +69,7 @@ _man() __ltrim_colon_completions "$cur" return 0 } && -complete -F _man -o filenames man apropos whatis +complete -F _man man apropos whatis # Local variables: # mode: shell-script |