emacs_tutorial/doc/movement.org

17 lines
669 B
Org Mode
Raw Normal View History

#+date: 2021
#+options: toc:nil num:nil author:nil
2022-04-27 22:09:34 +02:00
* Movement and text edition
Deleting words or characters
| Keybinding | Action |
|------------+----------------------------------------------|
| <DEL> | Delete the character just before the cursor |
| C-d | Delete the next character after the cursor |
| M-<DEL> | Kill the word immediately before the cursor |
| M-d | Kill the next word after the cursor |
| C-k | Kill from the cursor position to end of line |
| M-k | Kill to the end of the current sentence |
|------------+----------------------------------------------|