-
-
Save shmup/4049945 to your computer and use it in GitHub Desktop.
OSX .inputrc to make terminal way better. and by better i mean i'm naked
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Two escapes clear command line. | |
"\e\e": "\C-a\C-k" | |
# Tab to menu complete | |
"\t": menu-complete | |
# Incremental searching with Up and Down and Left and Right | |
"\e[A": history-search-backward | |
"\e[B": history-search-forward | |
"\e\e[C": forward-word | |
"\e\e[D": backward-word | |
set completion-ignore-case On | |
set expand-tilde on | |
set convert-meta off | |
set input-meta on | |
set mark-directories on | |
set output-meta on | |
set show-all-if-ambiguous on | |
set visible-stats on | |
set -o vi | |
$if Bash | |
#do history expansion when space entered | |
Space: magic-space | |
$endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
how do i trigger the expansion ...?