From a1fc2f044f2e08b78931821068d08e2ea384ff10 Mon Sep 17 00:00:00 2001 From: An-Cheng Huang Date: Wed, 27 Feb 2008 18:37:13 -0800 Subject: * fix for bug 2771: bind space to completion for vbash users. * add op commands to change the key behaviors. --- etc/bash_completion.d/10vyatta-op | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) (limited to 'etc') 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 -- cgit v1.2.3