Fix various uses of the GNUism of allowing backslash escapes in the second half of a sed regexp substitution

darcs-hash:20060302112808-ac50b-46cdf8e99f8f6e8cab0d54f32cf4e4d309775aa1.gz
This commit is contained in:
axel
2006-03-02 21:28:08 +10:00
parent d1bb30afae
commit 3b6d8756ea
9 changed files with 15 additions and 15 deletions

View File

@@ -65,7 +65,7 @@ complete -c set -n '__fish_is_first_token' -s q -l query -d (N_ "Test if variabl
complete -c set -n '__fish_is_first_token' -s h -l help -d (N_ "Display help and exit")
# Complete using preexisting variable names
complete -c set -n '__fish_is_first_token' -x -a "(set|sed -e 's/ /\tVariable: /')"
complete -c set -n '__fish_is_first_token' -x -a "(set|sed -e 's/ /'\t'Variable: /')"
# Color completions
complete -c set -n '__fish_set_is_color' -x -a '(set_color --print-colors)' -d (N_ Color)