aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/completions/set.fish
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-03-02 21:28:08 +1000
committerGravatar axel <axel@liljencrantz.se>2006-03-02 21:28:08 +1000
commit3b6d8756eaad427743bf1830a37dbdc7dab9f2d0 (patch)
treee75b054ee1103845f5fb0dd3655b3f05f6f6e752 /share/completions/set.fish
parentd1bb30afae366aedde90d2ae3d34447a306dfa9d (diff)
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
Diffstat (limited to 'share/completions/set.fish')
-rw-r--r--share/completions/set.fish2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/completions/set.fish b/share/completions/set.fish
index d341bebb..1510fbc7 100644
--- a/share/completions/set.fish
+++ b/share/completions/set.fish
@@ -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)