Emacs Basics
Using Menu
Emacs by default supports mouse and menu.
The keyboard shortcuts are shown beside the menu.
- “C-x” means Ctrl+x
- “M-x” means Alt+x
So, use menu, and you can learn the keyboard shortcuts.
Using Emacs in Text Terminal
The following is a tutorial covering the basics for using emacs by keyboard only.
Using emacs with only keyboard is critical to many programers, because one important use of emacs is working on remote machine via text terminal.
Start Emacs
# start emacs in text terminal. nw means no window system emacs -nw
Start emacs and open a file:
# open a file with emacs emacs fileName
Undo
To undo, press 【Ctrl+_】
To redo, press Ctrl+g then press key for undo. Press the undo key again to redo more.
Save
To save file, press 【Ctrl+x Ctrl+s】.
Quit Emacs
Press 【Ctrl+x Ctrl+c】.
Quit without Saving
To quit without saving, just do quit and emacs will ask if you want to save.
If the keys you press seem to do weird things, then, press Ctrl+g. This will cancel the sequence of keys you may have pressed by mistake.
Congratulations! You are now a Emacs Master!
With the above, you can edit any text file. Now, you can learn how to do search, find/replace, and new shortcuts for efficient navigation. Goto Emacs Keys.
If you have a question, put $5 at patreon and message me.