aboutsummaryrefslogtreecommitdiffhomepage
path: root/share
diff options
context:
space:
mode:
authorGravatar Fabian Homborg <FHomborg@gmail.com>2016-05-29 14:31:42 +0200
committerGravatar Fabian Homborg <FHomborg@gmail.com>2016-05-29 14:31:42 +0200
commit0d257fd651ce244a25d1f262f8dafdc99bcbad44 (patch)
tree27db69ba4abb99972347eb429ecd5384b84004b1 /share
parentebde55f7047aa56ce69bf33ce8fb62c7e9f2a37d (diff)
Man completions: Don't show sections when completing pages
Diffstat (limited to 'share')
-rw-r--r--share/completions/man.fish29
1 files changed, 15 insertions, 14 deletions
diff --git a/share/completions/man.fish b/share/completions/man.fish
index 38e5ca4d..c70a1ab0 100644
--- a/share/completions/man.fish
+++ b/share/completions/man.fish
@@ -1,20 +1,21 @@
complete -xc man -a "(__fish_complete_man)"
-complete -xc man -a 1 --description "Program section"
-complete -xc man -a 2 --description "Syscall section"
-complete -xc man -a 3 --description "Library section"
-complete -xc man -a 4 --description "Device section"
-complete -xc man -a 5 --description "File format section"
-complete -xc man -a 6 --description "Games section"
-complete -xc man -a 7 --description "Misc section"
-complete -xc man -a 8 --description "Admin section"
-complete -xc man -a 9 --description "Kernel section"
-complete -xc man -a tcl --description "Tcl section"
-complete -xc man -a n --description "New section"
-complete -xc man -a l --description "Local section"
-complete -xc man -a p
-complete -xc man -a o --description "Old section"
+complete -xc man -n 'not __fish_complete_man' -a 1 -d 'Program section'
+complete -xc man -n 'not __fish_complete_man' -a 2 -d 'Syscall section'
+complete -xc man -n 'not __fish_complete_man' -a 3 -d 'Library section'
+complete -xc man -n 'not __fish_complete_man' -a 4 -d 'Device section'
+complete -xc man -n 'not __fish_complete_man' -a 5 -d 'File format section'
+complete -xc man -n 'not __fish_complete_man' -a 6 -d 'Games section'
+complete -xc man -n 'not __fish_complete_man' -a 7 -d 'Misc section'
+complete -xc man -n 'not __fish_complete_man' -a 8 -d 'Admin section'
+complete -xc man -n 'not __fish_complete_man' -a 9 -d 'Kernel section'
+complete -xc man -n 'not __fish_complete_man' -a tcl -d 'Tcl section'
+complete -xc man -n 'not __fish_complete_man' -a n -d 'New section'
+complete -xc man -n 'not __fish_complete_man' -a l -d 'Local section'
+complete -xc man -n 'not __fish_complete_man' -a p
+complete -xc man -n 'not __fish_complete_man' -a o -d 'Old section'
+
complete -rc man -s C --description "Configuration file"
complete -xc man -s M -a "(__fish_complete_directories (commandline -ct))" --description "Manpath"
complete -rc man -s P --description "Pager"