aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/completions/ack.fish
diff options
context:
space:
mode:
authorGravatar Konrad Borowski <glitchmr@myopera.com>2013-05-21 09:10:41 +0200
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-05-25 00:27:30 -0700
commit8f9ba2cd094db7eb164a38d704327e230cdcfae0 (patch)
treefe027915a51402f58f5be5f27ae9b0121bd9df21 /share/completions/ack.fish
parentee95a7309a5e89031188642c8c2e4c77283d6433 (diff)
Escape question mark in ack completion
I haven't noticed that because I tested ack in directory with one file. After @gfxmonk sent issue #797, I have noticed the problem. This patch fixes #797 by escaping question mark.
Diffstat (limited to 'share/completions/ack.fish')
-rw-r--r--share/completions/ack.fish2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/completions/ack.fish b/share/completions/ack.fish
index 5502bf2b..3c37be11 100644
--- a/share/completions/ack.fish
+++ b/share/completions/ack.fish
@@ -72,7 +72,7 @@ complete -c ack -l noenv -l no-env -d 'Ignores environment variables and ackrc f
complete -c ack -l ackrc -d 'Specifies location of ackrc file'
complete -c ack -l ignore-ack-defaults -d 'Ignore default definitions ack includes'
complete -c ack -l create-ackrc -d 'Outputs default ackrc'
-complete -c ack -s ? -l help -d 'Shows help'
+complete -c ack -s \? -l help -d 'Shows help'
complete -c ack -l help-types -d 'Shows all known types'
complete -c ack -l dump -d 'Dump information on which options are loaded'
complete -c ack -l filter -d 'Forces ack to treat input as a pipe'