Created
July 13, 2010 01:55
-
-
Save DylanFM/473345 to your computer and use it in GitHub Desktop.
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
| Commands for Moving | |
| beginning-of-line (C-a) | |
| Move to the start of the current line. | |
| end-of-line (C-e) | |
| Move to the end of the line. | |
| forward-char (C-f) | |
| Move forward a character. | |
| backward-char (C-b) | |
| Move back a character. | |
| forward-word (M-f) | |
| Move forward to the end of the next word. Words are composed of alphanumeric characters (letters and digits). | |
| backward-word (M-b) | |
| Move back to the start of the current or previous word. Words are composed of alphanumeric characters (letters and | |
| digits). | |
| clear-screen (C-l) | |
| Clear the screen leaving the current line at the top of the screen. With an argument, refresh the current line with- | |
| out clearing the screen. | |
| redraw-current-line | |
| Refresh the current line. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment