Created
October 19, 2011 12:46
-
-
Save fbrnc/1298193 to your computer and use it in GitHub Desktop.
My inputrc configuration
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
set meta-flag on | |
set input-meta on | |
set convert-meta off | |
set output-meta on | |
# Pos1 / Ende to jump within line | |
"\e[h": beginning-of-line | |
"\e[f": end-of-line | |
"\e[1~": beginning-of-line | |
"\e[4~": end-of-line | |
"\e[3~": delete-char | |
"\e[2~": quoted-insert | |
# Search History with page-up and page-down | |
"\e[5~": history-search-backward | |
"\e[6~": history-search-forward | |
# mappings for Ctrl-left-arrow and Ctrl-right-arrow for word moving | |
"\e[5C": forward-word | |
"\e[5D": backward-word | |
"\e\e[C": forward-word | |
"\e\e[D": backward-word |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment