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
|
174
|
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 |
||||
|
|
|
:%s/search/replace/g Global Search and replace |
||||
|
|
|
Brace/parentheses match. If you have the cursor on a parenthesis/brace/etc ( |
|||
|
|
Read contents of an external command into the doc: :r !ls |
|||
|
|
|
|
Search for all occurrences of word under the cursor. |
||||
|
|
|
:g/search/p Grep inside this file and print matching lines. You can also replace p with d to delete matching lines. |
||||
|
|
|
:e! Reopen the current file, getting rid of any unsaved changes. Great for when a global search and replace goes awry. |
||||||||
|
|
|
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. |
|||
|
|
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:
|
|||
|
|
|
|
. (period) Repeats the previous change |
|||
|
|
|
|
Reformat current line. Use it all the time to reformat comments in code, etc. |
||||
|
|
|
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 |
|||
|
|
|
|
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 :-) |
|||
|
|
|
|
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. |
|||
|
|
Indents the block between two braces/#ifdefs |
|||
|
|
Visual mode for selecting text to copy, delete, etc. |
|||
|
|
|
|
Executes "make" and then will jump to the file that contain the compile errors (if any). |
|||
|
|
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. |
|||
|
|
|
|
ctrl-x->ctrl-f (while cursor on a path string) |
|||
|
|
|
|
At the ex prompt you have command history using up/down arrows. |
|||
|
|
|
|
u <-- undo :-) |
||||
|
|
|
Shift-~ |
|||
|
|
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 |
||||
|
|
|
ZZ - Save & Exit |
|||
|
|
|
|
Reaching up to hit ESC all the time is much too slow. I use TAB instead. Put this in your .vimrc:
imap <tab> <esc>
CAPSLOCK is even better if you don't already have that remapped to CTRL. I never type literal tabs in insert mode so haven't bothered with this but if someone could replace this sentence with how to swap ESC and TAB (or CAPSLOCK), that would be super handy. |
||||
|
|
|
i also find ctrl+v for visual block and shift+v for visual line quite useful |
|||
|
|
|
|
running shell commands on the current file without having to exit, run the command and open it again:
for example,
gets rid of all lines containing "foo"
nicely tab-ifies the current file (if it's valid xml) and so on... |
|||
|
|
Ctrl+] |
|||
|
|
|
|
:ts to search for tags in C/C++ |
|||
|
|
I have the following in my vimrc:
When I have all my tabs open for a project, I type :mksession. Then, whenever I return to that dir, I just open vim and hit F3 to load my "workspace". |
|||
|
|
xp transpose two characters. e.g. 'teh' move cursor over the 'e' and type 'xp' (x=cut, p=paste cut buffer) y (or yy) yank a line into the buffer d (or dd) delete line (and put in buffer) p put/paste the buffer really, handy when combined with multipliers. 5yy [move cursor] p copy 5 lines |
|||
|
|