Use 'Control+TAB' for cycling possible completion in bash.
authorOleksandr Gavenko <gavenkoa@gmail.com>
Tue, 25 Oct 2011 22:19:01 +0300
changeset 238 1ae5fbcaea7c
parent 237 ff30a2d60ee6
child 239 8f3d4826aec2
Use 'Control+TAB' for cycling possible completion in bash.
.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