diff options
Diffstat (limited to 'etc/bash_completion.d/10vyatta-op')
-rw-r--r-- | etc/bash_completion.d/10vyatta-op | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/etc/bash_completion.d/10vyatta-op b/etc/bash_completion.d/10vyatta-op index 4eb5ba2..db5ae9d 100644 --- a/etc/bash_completion.d/10vyatta-op +++ b/etc/bash_completion.d/10vyatta-op @@ -35,8 +35,26 @@ test -z "$_vyatta_default_pager" && \ --no-lessopen" declare -x VYATTA_PAGER=$_vyatta_default_pager -# use '?' for help -bind '"?": possible-completions' +_vyatta_op_do_key_bindings () +{ + # if vbash + # use '?' for help + # use ' ' for completion + if [ "$SHELL" == "/bin/vbash" ]; then + if [ -f $HOME/.vyatta_key_query_help_disable ]; then + bind '"?": self-insert' + else + bind '"?": possible-completions' + fi + if [ -f $HOME/.vyatta_key_space_complete_disable ]; then + bind '" ": self-insert' + else + bind '" ": complete' + fi + fi +} + +_vyatta_op_do_key_bindings test -f /etc/default/vyatta && \ source /etc/default/vyatta |