next
index
prev
more emacs:
One could also use M-f and M-b to move one word at
a time instead of one character at a time.
M is short for the Meta key, on your keyboard it will probably be Alt.
page up is M-v, page down is C-v.
end of line C-e, beginning of line C-a.
so much for moving around.
The most common method of copy&paste is by cutting out using C-k
.
C-k cuts until the end of line, typing C-k many times will cut
many lines.
If you cut a few lines than move around and cut more lines
the first lines would be lost (not including possible undo).
In order to paste we will yank the text out of the buffer using C-y
you can yank(paste) out however many times you want wherever you want.
next
index
prev