How do I select the text inside quotes?
vi"
The vi" command visually selects all text inside double quotes, without including the quotes themselves.
visual-mode #visual-mode #text-objects #editing #normal-mode
Search Vim Tricks
Searching...vi"
The vi" command visually selects all text inside double quotes, without including the quotes themselves.
visual-mode #visual-mode #text-objects #editing #normal-mode
:split
The :split command (or s) splits the current window horizontally, creating a new window above with the same file.
:set number!
The :set number! command toggles line numbers on or off.
:g/pattern/d
The :g/pattern/d command deletes every line in the file that matches the given pattern.