Post your favorite Vim tricks (or plug-ins or scripts). One trick per answer.
Try to come up with something other than the basics, btw. :D
|
176
|
Post your favorite Vim tricks (or plug-ins or scripts). One trick per answer. Try to come up with something other than the basics, btw. :D |
||||
|
|
|
ZZ - Save & Exit |
|||
|
|
|
|
Putting options in comments in a file to be edited. That way the specific options will follow the file. Example, from inside a script: # vim: ts=3 sw=3 et sm ai smd sc bg=dark nohlsearch |
||||
|
|
|
Shift-~ |
||||
|
|
|
u <-- undo :-) |
||||
|
|
|
At the ex prompt you have command history using up/down arrows. |
|||
|
|
|
|
ctrl-x->ctrl-f (while cursor on a path string) |
|||
|
|
|
|
I really like the VTreeExplorer script for viewing portions of the folders and files in a tree view, and snippetsEmu to get TextMate-like bundles. My favorite color scheme for the moment is VibrantInk. |
|||
|
|
|
|
Executes "make" and then will jump to the file that contain the compile errors (if any). |
|||
|
|
Visual mode for selecting text to copy, delete, etc. |
|||
|
|
|
|
Indents the block between two braces/#ifdefs |
|||
|
|
I have this in my .vimrc file -- it's helpful for doing Ruby programming. map R :wall!:!ruby % This lets me press 'R' and have the file saved and then execute the file in the Ruby interpreter. |
|||
|
|
Enter a number before any command to repeat it N times. For example: 7dd <-- will delete 7 rows 7 arrow down <-- moves down 7 times 4cw <-- removes the 4 next words and puts you in edit mode to replace them This is in my opinion the most powerful feature of them all :-) |
|||
|
|
|
|
NNyl <-- copy NN characters to the right beginning with the cursor position (ie. 7yl to copy 7 characters) p <-- paste the characters at the position after the cursor position P <-- paste the characters at the position before the cursor position |
|||
|
|
|
|
Reformat current line. Use it all the time to reformat comments in code, etc. |
||||
|
|
|
. (period) Repeats the previous change |
|||
|
|
|
|
Change the lineendings in the view:
This can also be used as saving operation (:w alone will not save using the lineendings you see on screen):
And you can use it from the command-line:
|
|||
|
|
|
|
ctrl-n/ctrl-p Auto-complete - searches current file for words beginning with the characters under the cursor. Great for finishing long func/var names. Will also search other files you've opened during that session. |
|||
|
|
:e! Reopen the current file, getting rid of any unsaved changes. Great for when a global search and replace goes awry. |
||||||||
|
|
|
:g/search/p Grep inside this file and print matching lines. You can also replace p with d to delete matching lines. |
||||
|
|
|
Search for all occurrences of word under the cursor. |
||||
|
|
|
Read contents of an external command into the doc: :r !ls |
|||
|
|
|
|
Brace/parentheses match. If you have the cursor on a parenthesis/brace/etc ( |
|||
|
|
:%s/search/replace/g Global Search and replace |
||||
|