https://github.com/inushin/emacscustomconfig
https://github.com/inushin/emacscustomconfig
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/inushin/emacscustomconfig
- Owner: Inushin
- Created: 2024-04-18T13:26:45.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-01T20:39:01.000Z (about 1 year ago)
- Last Synced: 2025-02-05T16:18:18.656Z (8 months ago)
- Language: Emacs Lisp
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Emacs CheatSheet
## Emacs
### Suspend Emacs
```emacs
Ctrl-z
```### Exit permanently
```emacs
Ctrl-x Ctrl-c
```### Advanced options
```emacs
Meta-x
```## Files
### Open file
```emacs
Ctrl-x Ctrl-f
```### Save changes
```emacs
Ctrl-x Ctrl-s
```### Save changes on all open files
```emacs
Ctrl-x s
```### Change currently open file for another in the same folder
```emacs
Ctrl-x Ctrl-v
```## Error recovery
### Abort a command
```emacs
Ctrl-g
```### Undo a change
```emacs