Last active
January 3, 2016 04:29
-
-
Save manishval/8409471 to your computer and use it in GitHub Desktop.
Bash keyboard 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
- command + a to go to the beginning of a line | |
- command + e to go to the end of a line | |
- alt+f forward word (unless system shortcut for file menu) | |
- alt+b back word | |
- command + b back char | |
- command + f forward char. | |
- command + u to kill (cut) from current location to beginning of the line | |
- command + k to kill (cut) from current location to end of line | |
- command + w to kill (cut) from current location to beginning of word | |
- command + y to paste (copied / cut) lines | |
- command + l to clear screen (I use the shit out of this) | |
- ctrl + shift + '-' (holding ctrl, shift, minus at the same time), for undo. | |
- option + click position to move the cursor to that position |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment