Files
dotdenote/assets/docker/notes/20240815T090000--emacs-keybindings-reference__emacs_keybindings.org
andros 9ddd118a49 Redesign UI with flat retro Emacs aesthetic
Replace standard iOS components with a terminal-inspired design:
monospaced typography throughout, flat square borders, Emacs-style
modeline header, filetag keyword format (:kw1:kw2:), and custom
flat form replacing the iOS Form component. Set Emacs as default
theme. Replace non-Emacs demo notes with Emacs ecosystem content
and rename screenshots.
2026-06-17 12:54:41 +02:00

46 lines
1.6 KiB
Org Mode

#+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 |