mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 04:43:10 +00:00
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.
This commit is contained in:
parent
ee95a7309a
commit
8f9ba2cd09
1 changed files with 1 additions and 1 deletions
|
@ -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 ackrc -d 'Specifies location of ackrc file'
|
||||||
complete -c ack -l ignore-ack-defaults -d 'Ignore default definitions ack includes'
|
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 -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 help-types -d 'Shows all known types'
|
||||||
complete -c ack -l dump -d 'Dump information on which options are loaded'
|
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'
|
complete -c ack -l filter -d 'Forces ack to treat input as a pipe'
|
||||||
|
|
Loading…
Reference in a new issue