From 0d257fd651ce244a25d1f262f8dafdc99bcbad44 Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Sun, 29 May 2016 14:31:42 +0200 Subject: Man completions: Don't show sections when completing pages --- share/completions/man.fish | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) (limited to 'share') 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" -- cgit v1.2.3