Add true/false completion for boolean options

This commit is contained in:
Stefan Koch 2017-10-30 12:17:02 +01:00
parent 6de8ff2037
commit 797b4f2005
1 changed files with 25 additions and 6 deletions

View File

@ -4,21 +4,36 @@ _dfmt()
local cur prev opts local cur prev opts
COMPREPLY=() COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}" cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}" prev="${COMP_WORDS[COMP_CWORD-1]}"
opts="--help -h --inplace -i --version --align_switch_statements --brace_style\
--end_of_line --indent_size --indent_style -t --soft_max_line_length\ booleans="--align_switch_statements --outdent_attributes --space_after_cast\
--max_line_length --outdent_attributes --space_after_cast\
--space_before_function_parameters --selective_import_space\ --space_before_function_parameters --selective_import_space\
--split_operator_at_line_end --compact_labeled_statements\ --split_operator_at_line_end --compact_labeled_statements"
--template_constraint_style"
# Uncomment code below to print the list of boolean options incase you edit it
# and replace it in the case below
#
#booleans=${booleans// / }
#booleans=${booleans// / }
#bared_booleans=\"${booleans// /\"|\"}\"
#echo ${bared_booleans}
opts="--help -h --inplace -i --version --brace_style\
--end_of_line --indent_size --indent_style -t --soft_max_line_length\
--max_line_length ${booleans} --template_constraint_style"
eolOpts="lf cr crlf" eolOpts="lf cr crlf"
boolOpts="true false"
braceOpts="allman otbs stroustrup" braceOpts="allman otbs stroustrup"
indentOpts="tab space" indentOpts="tab space"
constraintOpts="conditional_newline_indent conditional_newline always_newline always_newline_indent" constraintOpts="conditional_newline_indent conditional_newline always_newline always_newline_indent"
if [[ ${cur} == -* ]]; then if [[ ${cur} == -* ]]; then
COMPREPLY=($(compgen -W "${opts}" -- ${cur})) COMPREPLY=($(compgen -W "${opts}" -- ${cur}))
return 0; return 0;
fi fi
case "${prev}" in case "${prev}" in
"--brace_style") "--brace_style")
COMPREPLY=($(compgen -W "${braceOpts}" -- ${cur})) COMPREPLY=($(compgen -W "${braceOpts}" -- ${cur}))
@ -38,6 +53,10 @@ _dfmt()
COMPREPLY=($(compgen -W "${constraintOpts}" -- ${cur})) COMPREPLY=($(compgen -W "${constraintOpts}" -- ${cur}))
return 0 return 0
;; ;;
"--align_switch_statements"|"--outdent_attributes"|"--space_after_cast"|"--space_before_function_parameters"|"--selective_import_space"|"--split_operator_at_line_end"|"--compact_labeled_statements")
COMPREPLY=($(compgen -W "${boolOpts}" -- ${cur}))
return 0
;;
*) *)
COMPREPLY=($(compgen -f -- ${cur})) COMPREPLY=($(compgen -f -- ${cur}))
return 0 return 0