#+title: Emacs Keybindings Reference #+date: [2024-08-15 Thu] #+filetags: :emacs:keybindings: #+identifier: 20240815T090000 * Movement | Key | Action | |---------+-------------------------------| | C-f | Forward one character | | C-b | Backward one character | | M-f | Forward one word | | M-b | Backward one word | | C-a | Beginning of line | | C-e | End of line | | M-< | Beginning of buffer | | M-> | End of buffer | | C-v | Scroll down | | M-v | Scroll up | * Editing | Key | Action | |-----------+-------------------------------| | C-d | Delete character forward | | M-d | Kill word forward | | C-k | Kill to end of line | | C-y | Yank (paste) | | M-y | Cycle through kill ring | | C-/ | Undo | | C-x u | Undo (alternative) | | M-u | Uppercase word | | M-l | Lowercase word | * Buffers and windows | Key | Action | |-----------+-------------------------------| | C-x b | Switch buffer | | C-x k | Kill buffer | | C-x 2 | Split window horizontally | | C-x 3 | Split window vertically | | C-x o | Switch to other window | | C-x 0 | Close current window | | C-x 1 | Close all other windows |