mirror of
https://github.com/lawrencesystems/dotfiles.git
synced 2025-03-05 20:49:40 -08:00
added .inputrc with case insensitive completion and autocomplete command from history
This commit is contained in:
parent
c11f48adc4
commit
ce13fa5499
15
.inputrc
Normal file
15
.inputrc
Normal file
|
@ -0,0 +1,15 @@
|
|||
# Start typing than press up / down arrow to autocomplete command from history
|
||||
"\e[A": history-search-backward
|
||||
"\e[B": history-search-forward
|
||||
|
||||
# Complete things that have been typed in the wrong case:
|
||||
set completion-ignore-case on
|
||||
|
||||
# When listing possible file completions, put / after directory names and * after programs:
|
||||
set visible-stats on
|
||||
|
||||
# List the possible completions when Tab is pressed:
|
||||
set show-all-if-ambiguous on
|
||||
|
||||
# Make Meta+S cycle through the list:
|
||||
"\M-s": menu-complete
|
Loading…
Reference in a new issue