Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Quit: C-x C-c
- Help: C-h (then enter topic; just pressing RET lists all topics)
- Save buffer: C-x s
- Save buffer (overwrite existing file): C-x C-s
- Save as: C-x C-w (then enter path and file name)
- Cancel: C-g
- Open (find) file: C-x f or C-x C-f (then enter path and file name)
- Search forward: C-s (then enter search string)
- Search backward: C-r (then enter search string)
- (keep pressing C-s or C-r to repeat the search with the string entered before)
- Split screen horizontally: C-x 2
- Split screen vertically: C-x 3
- Shrink window to fit its content: C-x -
- Resize windows to have equal size: C-x +
- Enlarge current window horizontally by 1 line: C-x ^
- Enlarge current window vertikallyally by 1 column: C-x }
- Shrink current window vertikallyally by 1 column: C-x {
- Switch to other window: C-x o or C-x n
- Unsplit/delete other window: C-x 1
- Switch to buffer: C-x b (then enter buffer name)
- Undo: C-/ or C-_ or C-x u
- Mark region: C-SPC (then move cursor to end of region and proceed with one of the following options)
- Copy region to buffer: ESC-w
- Kill (cut & copy region to buffer): C-w
- Yank (paste buffer): C-y
- Move cursor back to mark location: C-x C-x
- Meta functions (ESC is used as meta key 'M'):
- ---------------
- Enable/disable word wrap: M-x visual-line-mode
- Edit font colors: M-x customize-face (cursor must be placed on the color to change)
- Work with coding systems:
- ---------------
- Describe a particular coding system: C-h C (then enter name of coding system; just pressing RET describes the system currently used)
- List all coding systems: M-x list-coding-systems
- Change coding system: C-x C-m f (then enter name of coding system; default is utf-8-unix)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement