aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/completions/nm.fish
diff options
context:
space:
mode:
authorGravatar gonchar <gonchar@gonchar-lt.jinr.ru>2011-09-23 12:24:21 +0400
committerGravatar gonchar <gonchar@gonchar-lt.jinr.ru>2011-09-23 12:24:21 +0400
commitc66ec4df3d57bcbd8eb1fb3d92c3cd80e1c215b5 (patch)
tree26687f27243c7df719f3b14d87b085d8560146bf /share/completions/nm.fish
parentc25c48f76369d61e23de283d34f9b5b80d19f022 (diff)
* __fish_complete_subcommand_root now passes arguments to
__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
Diffstat (limited to 'share/completions/nm.fish')
-rw-r--r--share/completions/nm.fish29
1 files changed, 29 insertions, 0 deletions
diff --git a/share/completions/nm.fish b/share/completions/nm.fish
new file mode 100644
index 00000000..832d3192
--- /dev/null
+++ b/share/completions/nm.fish
@@ -0,0 +1,29 @@
+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"
+