Quantcast
Channel: How can I make bash tab completion behave like vim tab completion and cycle through matching matches? - Stack Overflow
Viewing all articles
Browse latest Browse all 6

Answer by Johnny Baloney for How can I make bash tab completion behave like vim tab completion and cycle through matching matches?

$
0
0

On top of

# cycle forward
Control-k: menu-complete
# cycle backward
Control-j: menu-complete-backward

you may also consider adding

# display one column with matches
set completion-display-width 1

This way you would preserve the current Tab functionality and make bash display the possibilities in one column. So instead of

file_12340983421 file_12390983421 file_12390986421 file_12391983421

you would get

file_12340983421
file_12390983421
file_12390986421
file_12391983421

P.S. You can get up to date readline library from this The GNU Readline Library website.


Viewing all articles
Browse latest Browse all 6

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>