# HG changeset patch # User Oleksandr Gavenko # Date 1319570341 -10800 # Node ID 1ae5fbcaea7c7b8bdb8f674b60593683f7f6e3e2 # Parent ff30a2d60ee66fc2ea2b8f1807c1d1644dd17920 Use 'Control+TAB' for cycling possible completion in bash. diff -r ff30a2d60ee6 -r 1ae5fbcaea7c .inputrc --- a/.inputrc Tue Oct 25 21:53:31 2011 +0300 +++ b/.inputrc Tue Oct 25 22:19:01 2011 +0300 @@ -87,9 +87,12 @@ "\e[B": history-search-forward "\C-n": history-search-forward -# Bind "Shift TAB" to complete as in Python TAB was need for another purpose. +# Bind 'Shift+TAB' to complete as in Python TAB was need for another purpose. "\e[Z": complete -# " ": menu-complete +$if Bash +# Use 'Control+TAB' for cycling possible completion in bash. +"\e[1;5I": menu-complete +$endif # Local Variables: # mode: shell-script