mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 07:34:32 +00:00
c66ec4df3d
__fish_complete_subcommand * sudo: - now can be completed bu group and user (-u and -g keys). - subcommand completion is fixed * __fish_complete_proc.fish is added to complete killall command with list of running processes * __fish_complete_tex.fish is updated with common options * __fish_make_completion_signals.fish is added to make a list of kill signals for kill and killall * completions: - minor filetype completions are added for djview, xpdf, mupdf, gv, xdvi - adduser is copmleted by user and group - dlocate and dpkg are completed by packages - find: -executable options is added - htop: options - funced and funcsave are completed by function names - ifdown and ifup are copmleted by interfaces - kill and killall: options, signals and processes - latexmk, ln, nm: options - lualatex and xelatex copmletions - sudo: -u and -g options - wvdial: presets
37 lines
2.5 KiB
Fish
37 lines
2.5 KiB
Fish
#
|
|
# Completions for the xpdf command
|
|
# Vikas Gorur <vikas@80x25.org>
|
|
#
|
|
complete -c xpdf -x -a "(__fish_complete_suffix .pdf)"
|
|
|
|
complete -c xpdf -s g --description "Set the initial window geometry"
|
|
complete -c xpdf -o title --description "Set the window title"
|
|
complete -c xpdf -o cmap --description "Install a private colormap"
|
|
complete -c xpdf -o rgb --description "Set the size of the largest RGB cube xpdf will try to allocate"
|
|
complete -c xpdf -o rv --description "Set reverse video mode"
|
|
complete -c xpdf -o papercolor --description "Set the background of the page display"
|
|
complete -c xpdf -o mattecolor --description "Set the color for background outside the page area"
|
|
complete -c xpdf -s z --description "Set the initial zoom factor"
|
|
complete -c xpdf -o cont --description "Start in continuous view mode"
|
|
complete -c xpdf -o t1lib -a "yes no" --description "Enable or disable t1lib (Default: yes)"
|
|
complete -c xpdf -o freetype -a "yes no" --description "Enable or disable FreeType (Default: yes)"
|
|
complete -c xpdf -o aa -a "yes no" --description "Enable or disable font anti-aliasing (Default: yes)"
|
|
complete -c xpdf -o ps --description "Set the default file name for PostScript output"
|
|
complete -c xpdf -o paper -a "letter legal A4 A3 match" --description "Set the paper size"
|
|
complete -c xpdf -o paperw --description "Set the paper width, in points"
|
|
complete -c xpdf -o paperh --description "Set the paper height, in points"
|
|
complete -c xpdf -o level1 --description "Generate Level 1 PostScript"
|
|
complete -c xpdf -o enc --description "Sets the encoding to use for text output"
|
|
complete -c xpdf -o eol -a "unix dos mac" --description "Sets the end-of-line convention to use"
|
|
complete -c xpdf -o opw --description "Specify the owner password for the PDF file"
|
|
complete -c xpdf -o upw --description "Specify the user password for the PDF file"
|
|
complete -c xpdf -o fullscreen --description "Open xpdf in full-screen mode"
|
|
complete -c xpdf -o remote --description "Start/contact xpdf remote server"
|
|
complete -c xpdf -o reload --description "Reload xpdf remote server window"
|
|
complete -c xpdf -o raise --description "Raise xpdf remote server window"
|
|
complete -c xpdf -o quit --description "Kill xpdf remote server"
|
|
complete -c xpdf -o cmd --description "Print commands as they're executed"
|
|
complete -c xpdf -s q --description "Don't print any messages or errors"
|
|
complete -c xpdf -o cfg --description "Specify config file to use instead of ~/.xpdfrc"
|
|
complete -c xpdf -s v --description "Print copyright and version information"
|
|
complete -c xpdf -s h --description "Print usage information"
|