mirror of
https://github.com/lawrencesystems/dotfiles.git
synced 2025-03-05 20:49:40 -08:00
16 lines
490 B
Plaintext
16 lines
490 B
Plaintext
# 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
|