mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +00:00
Improve htop completion
Add new options Add description at the top of the file Fix `--sort-key` completions
This commit is contained in:
parent
9d5471722f
commit
2b13472419
1 changed files with 10 additions and 4 deletions
|
@ -1,5 +1,11 @@
|
||||||
# Completions for top
|
# htop is an interactive process viewer.
|
||||||
complete -c htop -s d --description "Update interval" -x
|
# See: http://hisham.hm/htop
|
||||||
complete -c htop -s u --description "Monitor effective UID" -x -a "(__fish_complete_users)"
|
|
||||||
complete -c htop -l sort-key -d 'Sort column' -xa "(htop --sort-key '')"
|
|
||||||
|
|
||||||
|
complete -c htop -l delay -s d -d 'Update interval' -x
|
||||||
|
complete -c htop -l no-color -s C -d 'Start htop in monochrome mode'
|
||||||
|
complete -c htop -l no-colour -d 'Start htop in monochrome mode'
|
||||||
|
complete -c htop -l help -s h -d 'Show help and exit'
|
||||||
|
complete -c htop -l pid -s p -d 'Show only given PIDs' -x -a '(__fish_append , (__fish_complete_pids))'
|
||||||
|
complete -c htop -l user -s u -d 'Monitor given user' -x -a '(__fish_complete_users)'
|
||||||
|
complete -c htop -l sort-key -d 'Sort column' -xa '(htop --sort-key help)'
|
||||||
|
complete -c htop -l version -s v -d 'Show version and exit'
|
||||||
|
|
Loading…
Reference in a new issue