|
|
|
|
|
by joslin01
2958 days ago
|
|
I'm guessing you mean "dd" and "yy" to delete/yank lines. "x" deletes a single character, what you mean extract a line? If you learn "w", which just means advance by a word, you can combine them with your existing knowledge for much better use. So "dw" becomes delete a word, or "d3w" means delete next 3 words. "v" is also useful in conjunction with "w" / "b". |
|
* SHIFT+V to highlight a line, `d` to delete * `:d` to delete the current line
Not experimented with `dd` (or `yy`).