editor/vim/ VisualModeBasic


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