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 |
||||
|
|
|
In my ~/.vimrc : cmap w!! %!sudo tee > /dev/null % Will allow you to use :w!! to write to a file using sudo if you forgot to "sudo vim file" (it will prompt for sudo password when writing) |
||||||||||||
|
|
|
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 |
||||
|
|
|
Search for all occurrences of word under the cursor. |
||||
|
|
|
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 |
|||
|
|
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. |
|||
|
|
Shortcuts to quit the Insert mode:
quit Insert mode (faster than ESC)
quit insert mode just for the time of one command
quit insert mode, go at beginning of line, and go back to insert mode
quit insert mode, go at end of line, and go back to insert mode |
|||
|
|
:e! Reopen the current file, getting rid of any unsaved changes. Great for when a global search and replace goes awry. |
||||||||
|
|
|
Indents the block between two braces/#ifdefs |
|||
|
|
. (period) Repeats the previous change |
|||
|
|
|
|
:%s/search/replace/g Global Search and replace |
||||
|
|
|
control-A / control-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. |
|||
|
|
|
|
list all lines found in current and included files that contain the word under the cursor. |
|||
|
|
|
|
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:
|
|||
|
|
|
|
Correctly indent the entire file currently open.
Note that you may need to do |
|||
|
|
My favorite is: CTRL-A: Increment a number under the cursor. 99 becomes 100. It's really cool. |
|||
|
|
|
|
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... |
|||
|
|
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.) |
||||
|
|
|
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 |
|||
|
|
|
|
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". |
|||
|
|
macros Record:
Play:
|
||||
|
|
|
Executes "make" and then will jump to the file that contain the compile errors (if any). |
|||
|
|
:%s//replace/g 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. |
|||
|
|
|
|
Useful in your vimrc,
Makes vim keep its temporary files in /bla/bla/temp instead of in the directory with the file being edited. |
|||
|
|
ctrl-x->ctrl-f (while cursor on a path string) |
|||
|
|
|
|
Shift-~ |
|||
|
|
Brace/parentheses match. If you have the cursor on a parenthesis/brace/etc ( |
|||
|
|
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
|
|||
|
|
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 |
||||
|
|
|
Ctrl+] |
|||
|
|
|
|
Delete all blank lines in a file: :g/^$/d |
||||
|