>How would you delete a paragraph in vim? I reckon something like ...
`dip` will delete all contiguous lines (ie: lines between blanks)
`cip` will change in paragraph, (delete text and then put you in insert mode)
Here's another one: if the cursor is in the middle of a line, and you want to delete the rest of the line to change it, do you click and drag the mouse? Our do you hold shift, press down, backspace, and then press up again to get back to where you were?
I just press `C`
The vim "every key is a command" mode is called `normal` for a reason
`dip` will delete all contiguous lines (ie: lines between blanks) `cip` will change in paragraph, (delete text and then put you in insert mode)
Here's another one: if the cursor is in the middle of a line, and you want to delete the rest of the line to change it, do you click and drag the mouse? Our do you hold shift, press down, backspace, and then press up again to get back to where you were?
I just press `C`
The vim "every key is a command" mode is called `normal` for a reason