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
|
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 | |||||||||||||||||
feedback
|
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.
Delete the HTML tag the cursor is currently inside of – the whole tag, regardless of just where the cursor is.
Change the content of a doublequote-delimited string. Etc etc, along the same lines. See | |||||||||||||
feedback
|
|
In my
Will allow you to use Alternative that allows you to skip reloading the file:
| |||||||||||||||||||||
feedback
|
|
Using the built-in regions to change text quickly:
The command and type of region can all be used interchangeably and don't require .vimrc editing. See | |||||
feedback
|
Search for all occurrences of word under the cursor. | |||||||||||||
feedback
|
|
Shortcuts to quit the Insert mode: Ctrl+C Leave insert mode (faster than Esc) Ctrl+O Leave insert mode just for the duration of one command Ctrl+O Shift+I Leave insert mode, go to beginning of line, and return to insert mode Ctrl+O Shift+A Leave insert mode, jump to end of line, and return to insert mode | |||||||||||||||||||||
feedback
|
|
Correctly indent the entire file currently open.
Note that you may need to do | |||||
feedback
|
|
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. | ||||
|
feedback
|
|
list all lines found in current and included files that contain the word under the cursor. | |||||
feedback
|
Global Search and replace | |||||
feedback
|
|
Repeats the previous change | ||||
|
feedback
|
Reopen the current file, getting rid of any unsaved changes. Great for when a global search and replace goes awry. | |||||||||||||
feedback
|
|
Ctrl-A / Ctrl-X Skip to the next number on the line and increment/decrement it. Has a C-like idea of what's decimal, hex or octal. The "skip to the next number" part is what makes this feature really useful, because it potentially saves several keystrokes getting the cursor to the right place. | |||||
feedback
|
|
macros Record:
Play:
EDIT: A slightly complex example might be helpful to get an insight into the power of macros. Given an array (in C) of 32-bit integers in little endian, we want to convert it into big endian.
Now goto the first data line of the array (the line after uint32_t ...) and type (with the RETURN after ..6@b)
if the array has 9+1 lines with six 4-byte integers in each line. (Explanation, if you are not fluent in vim:
Maybe this example is too complex for "real life", but it should give you an idea about how powerful macros can be. | |||||
feedback
|
Indents the block between two braces/#ifdefs | |||||||||||||||||
feedback
|
|
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:
| ||||
|
feedback
|
|
My favorite is: CTRL-A: Increment a number under the cursor. 99 becomes 100. It's really cool. | |||||||||
feedback
|
will replace the last term that was searched for, instead of you having to type it again. This works well with using * to search for the word under the cursor. | ||||
|
feedback
|
|
Never underestimate the power of percent. Basically, it jumps to matching brace (booooring), but when the cursor is not on a brace it goes to the right until it finds one, which is my excuse to call this post a trick.
just type d% to get
Obviously, it works with (), [] and {}. Another examples of percent-not-on-paren:
%%lce
%cib | ||||
|
feedback
|
|
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... | |||||||||
feedback
|
|
Useful in your vimrc,
Makes vim keep its temporary files in /bla/bla/temp instead of in the directory with the file being edited. | |||||
feedback
|
Executes "make" and then will jump to the file that contain the compile errors (if any). | |||||
feedback
|
|
Copy to system clipboard:
Paste from system clipboard:
Move between wrapped lines (it's a good idea to map those):
And for my favourite:
Split and explore! | ||||
|
feedback
|
|
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". | |||||
feedback
|
|
As stated in another Thread, with the same Question: Ctrl + v -- row visual mode Shift + i -- insert before type text Escape Escape (Inserts the typed in text into multiple lines at the same time.) | |||||
feedback
|
|
When doing a search, there are ways to position the cursor search-relative after the search. This is handy for making repeated changes:
This is handy if you decide to change the name of any identifier (variable or function name) - you can set it up so the cursor is on the part that needs to be changed. After you've done the first one, you can do all the rest in the file with a sequence of 'n' (to repeat the search), and '.' (to repeat the change), while taking only a second to make sure the change is applicable in this spot. | ||||
|
feedback
|
|
Ctrl+] Equivalent to "Go to Definition" in an IDE (one must first create the tags file using e.g. ctags). Ctrl+T Pops to the previous element in the tag stack, i.e., the location and file you were in right before you hit Ctrl+].
| ||||
|
feedback
|
|
In insert mode:
Inserts the character that is above the cursor at the current cursor position and moves the cursor to the right. Great for duplicating parts of code lines. | |||||
feedback
|
|
Ctrl-X then Ctrl-F (while cursor on a path string) | ||||
|
feedback
|
Grep inside this file and print matching lines. You can also replace p with d to delete matching lines. | |||||
feedback
|
|
COMMENTING A BLOCK OF LINES IN VISUAL MODE add the lines below to your .vimrc file, go into visual mode w/ "v", and hit "c" to comment the lines or "u" to uncomment them, this is insanely useful. the lines below make this possible for C, C++, Perl, Python, and shell scripts, but it's pretty easy to extend to other languages
| |||||||||
feedback
|