Site Tools


Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
emacs:start [2016-08-11] – created dcaiemacs:start [2020-04-19] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Emacs ======
  
 +==== Editing ====
 +  * ''C-_'' or ''C-x u'' : undo
 +  * ''C-s'' : search forwards
 +  * ''C-r'' : search backwards
 +  * ''C-a C-x c-x'' kill the whole line
 +  * ''C-y'' Paste/yank
 +
 +^ Common Name     ^ Common Key    ^ Emacs Name    ^ Emacs Key^
 +|Cut       |C-x   |Kill |C-w|
 +|Copy       |C-c   |Kill-ring-save |M-w|
 +|Paste       |C-v   |Yank |C-y|
 +|—       |—   |Yank next |M-y|
 +==== Buffers ====
 +
 +
 +  * ''C-x b'' : switch buffers
 +  * ''C-x right'' : right-cycle through buffers
 +  * ''C-x left'' : left-cycle through buffers
 +  * ''C-x k'' : kill buffer
 +==== Movement ====
 +
 +  * ''c-n'' next line
 +  * ''c-p'' previous line
 +  * ''c-@'' mark start to select
 +
 +==== Window ====
 +  * ''C-x 0'' : close the active window
 +  * ''C-x 1'' : close all windows except the active window
 +  * ''C-x 2'' : split the active window vertically into two horizontal windows
 +  * ''C-x 3'' : split the active window horizontally into two vertical windows
 +  * ''C-x o'' : change active window to next window
 +
 +<catlist emacs:>