|
"/ for searching (really, no other editor has made it this simple)"
Well, it's really esc-/ which is no easier than ctrl-f. Or am I missing something? Edit: Same with
"1G to go to the top of the file, G to go to the bottom" -
esc-1-shift-g vs ctrl-home. Same with ctrl-end. |
Indeed you are. The / command in vim is a motion. This means it can be combined with any command that expects a motion as input. For one example of this, try typing "d/foo<CR>" (excluding quotes). This will delete all text from the cursor to the first occurrence of foo.