mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-12 07:57:22 +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
29 lines
2.3 KiB
Fish
29 lines
2.3 KiB
Fish
complete -c nm -s a -l debug-syms -d 'Display debugger-only symbols'
|
|
complete -c nm -s A -l print-file-name -d 'Print name of the input file before every symbol'
|
|
#complete -c nm -C -l demangle[=STYLE] Decode low-level symbol names into user-level names
|
|
# Same as --format=bsd
|
|
# The STYLE, if specified, can be `auto' (the default),
|
|
# `gnu', `lucid', `arm', `hp', `edg', `gnu-v3', `java' or `gnat'
|
|
complete -c nm -l no-demangle -d 'Do not demangle low-level symbol names'
|
|
complete -c nm -s D -l dynamic -d 'Display dynamic symbols instead of normal symbols'
|
|
complete -c nm -l defined-only -d 'Display only defined symbols'
|
|
complete -c nm -s f -l format=FORMAT -d 'Use the output format FORMAT. FORMAT can be "bsd", "sysv" or "posix". The default is "bsd"'
|
|
complete -c nm -s g -l extern-only -d 'Display only external symbols'
|
|
complete -c nm -s l -l line-numbers -d 'Use debugging information to find a filename and line number for each symbol'
|
|
complete -c nm -s n -l numeric-sort -d 'Sort symbols numerically by address'
|
|
complete -c nm -s o -d 'Print name of the input file before every symbol'
|
|
complete -c nm -s p -l no-sort -d 'Do not sort the symbols'
|
|
complete -c nm -s P -l portability -d 'Same as --format=posix'
|
|
complete -c nm -s r -l reverse-sort -d 'Reverse the sense of the sort'
|
|
complete -c nm -l plugin -d 'Load the specified plugin'
|
|
complete -c nm -s S -l print-size -d 'Print size of defined symbols'
|
|
complete -c nm -s s -l print-armap -d 'Include index for symbols from archive members'
|
|
complete -c nm -l size-sort -d 'Sort symbols by size'
|
|
complete -c nm -l special-syms -d 'Include special symbols in the output'
|
|
complete -c nm -l synthetic -d 'Display synthetic symbols as well'
|
|
complete -c nm -s t -l radix=RADIX -d 'Use RADIX for printing symbol values'
|
|
complete -c nm -l target=BFDNAME -d 'Specify the target object format as BFDNAME'
|
|
complete -c nm -s u -l undefined-only -d 'Display only undefined symbols'
|
|
complete -c nm -s h -l help -d 'Display this information'
|
|
complete -c nm -s V -l version -d "Display this program's version number"
|
|
|