SPC q q
- quitSPC w /
- split window verticallySPC w
- - split window horizontallySPC 1
- switch to window 1SPC 2
- switch to window 2SPC w c
- delete current windowSPC TAB
- switch to previous bufferSPC b b
- switch buffers
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
# <<<<< Enable natural text editing on terminal (this works for iTerm and all other mac OSX terminals) | |
# | |
# Move to the beginning of the line. `Cmd + Left Arrow`: | |
bindkey "^[[1;9D" beginning-of-line | |
# Move to the end of the line. `Cmd + Right Arrow`: | |
bindkey "^[[1;9C" end-of-line | |
# Move to the beginning of the previous word. `Option + Left Arrow`: | |
bindkey "^[[1;3D" backward-word | |
# Move to the beginning of the next word. `Option + Right Arrow`: | |
bindkey "^[[1;3C" forward-word |