aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/completions/ack.fish
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-05-13 02:06:04 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-05-13 02:06:18 -0700
commit622efba247bb944cbe8eabb2a98ccbde59862891 (patch)
treea2a3c23010ed7c1cfcd979e5e941c7832ab42d88 /share/completions/ack.fish
parentce0c52d35348b3655b70702a219143d5bbedba96 (diff)
Space -> tab in ack completion to match rest of file
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 6ad573b7..5502bf2b 100644
--- a/share/completions/ack.fish
+++ b/share/completions/ack.fish
@@ -84,7 +84,7 @@ complete -c ack -l bar -d 'The warning admiral'
# File types
if type ack > /dev/null
- for type in (ack --dump ^/dev/null | perl -lne 'print $1 if /^\s+--type-add=([^:]+)/' | uniq)
+ for type in (ack --dump ^/dev/null | perl -lne 'print $1 if /^\s+--type-add=([^:]+)/' | uniq)
complete -c ack -l $type -d "Allow $type file type"
complete -c ack -l no$type -l no-$type -d "Don't allow $type file type"
end