fish-shell/share/completions/bison.fish
Aaron Gyes 68527ff20c completions: --description -> -d
This ends up saving a surprising number of bytes.
2017-10-11 10:17:35 -07:00

23 lines
1.8 KiB
Fish

#
# Command specific completions for the bison command.
# These completions where generated from the commands
# man page by the make_completions.py script, but may
# have been hand edited since.
#
complete -c bison -s b -l file-prefix -d 'Specify a prefix to use for all bison output file names' -r
complete -c bison -s d -d 'Write an extra output file containing macro definitions for the token type names defined in the grammar and the semantic value type YYSTYPE, as well as a few extern variable declarations'
complete -c bison -l defines -d 'The behavior of --defines is the same than -d option'
complete -c bison -s g -d 'Output a VCG definition of the LALR(1) grammar automaton com puted by Bison'
complete -c bison -l graph -d 'The behavior of --graph is the same than -g option'
complete -c bison -s k -l token-table -d 'This switch causes the name'
complete -c bison -s l -l no-lines -d 'Dont put any #line preprocessor commands in the parser file'
complete -c bison -s n -l no-parser -d 'Do not generate the parser code into the output; generate only declarations'
complete -c bison -s o -l output -d 'Specify the name outfile for the parser file'
complete -c bison -s p -l name-prefix -d 'Rename the external symbols used in the parser so that they start with prefix instead of yy'
complete -c bison -s t -l debug -d 'In the parser file, define the macro YYDEBUG to 1 if it is not already defined, so that the debugging facilities are compiled'
complete -c bison -s v -l verbose -d 'Write an extra output file containing verbose descriptions of the parser states and what is done for each type of look-ahead token in that state'
complete -c bison -s V -l version -d 'Print the version number of bison and exit'
complete -c bison -s h -l help -d 'Print a summary of the options to bison and exit'
complete -c bison -s y -l yacc -l fixed-output-files -d 'Equivalent to -o y.tab.c'