Dup Goto 📝

VisualModeBasic

PT2/aw/editor/vim 07-31 13:46:45
To Pop
9 lines, 59 words, 355 chars Monday 2023-07-31 13:46:45
v       - enter visual mode where you select a range of characters
shift-v - select lines
ctrl-v  - select columns
y       - yank (copy to clipboard) selected
x       - cut selected
c       - change selected with what you type in after pressing c (until you press escape)
p       - paste into selection, i.e. replace what is there