Last active
September 2, 2022 07:13
-
-
Save zioproto/9d51365b7019760695f7fbe887ef9ef6 to your computer and use it in GitHub Desktop.
input rc for iTerm2 arrow navigation on Mac. Remember to disable mission control shortcuts
This file contains hidden or 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
# If using bash add to ~/.inputrc | |
"\e[1;5D": backward-word | |
"\e[1;5C": forward-word | |
# If using zsh add to ~/.zprofile | |
bindkey -e | |
bindkey '^[[1;5C' forward-word | |
bindkey '^[[1;5D' backward-word |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment