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
|
177
|
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 |
||||
|
|
|
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. |
|||
|
|
|
|
Editing multiple files simultaneously is very useful. :sp filename ctrl + W (arrow key) :windo wincmd H (or V) Also, I use . a lot It repeats the last executed command. |
|||
|
|
|
|
:normal(ize) plays back all the commands you pass to it as if they were typed on command mode. for example: :1,10 normal Iabc^[Axyz Would add 'abc' to the beginning and append 'xyz' to the end of the first 10 lines. |
|||
|
|
|
|
in escape mode: |
|||
|
|
|
|
splits current window to open the definition of the tag below the cursor |
|||
|
|
|
|
ZZ = :wq |
|||
|
|
|
|
When I use vim for writing a tidy journal, notes, etc
to format the current paragraph. |
|||
|
|
|
|
I don't see buffers mentioned, so I'll mention them. I finally got around to trying out Emacs the other day, and discovered buffers. I thought, wow, these are awesome, I wish VIM could do this. With a search I discovered that VIM can! For them to work, you may need to do
first, or add "set hidden" to your vimrc file. Quick:
and of course:
Windows are also extremely useful when dealing with buffers (Described in "help buffers") |
|||
|
|
Well, I know the author said no basic.. but I didn't know this one even if I knew less-basic one. Just use o to begin insert a new-line after the present line.. I used to do something like, $a (go to the end, start writing, and create new line).. So now, only o does this :) And by the way, O insert a new line on the present line instead of inserting it after the current. |
|||
|
|
|
|
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 |
|||
|
|
Jumps.
Mark location under [a-z]
Jump to marked location
Jump to last location
Jump to last edit |
|||
|
|
I wrote a function to go to the Most Recently Used tab page like Ctrl-a Ctrl-a in screen does or Alt-Tab in common window managers.
|
|||
|
|
|
|
|
|||
|
|
|
|
Knowing that the Windows clipboard buffer can be accessed with:
has saved me lots of boring entering-insert-mode shenanigans. Also copy/pasting between vi sessions can be done with:
|
|||
|
|
|
|
To turn auto indent on/off for pasting with add the following to the .vimrc:
That will give you a visual cue as well |
|||
|
|
|
|
My favorite is: CTRL-A: Increment a number under the cursor. 99 becomes 100. It's really cool. |
|||
|
|
|
|
Puts all backup files (file.txt~) in the specified directory instead of cluttering up your working directories. |
|||
|
|
Edit command lines with vim commands under the bash shell
Now you can edit command lines using the vim syntax! Example:
|
|||
|
|
|
|
I've been using Using gq} to format comments is also one my favorite vim tricks not found in the original vi. |
|||
|
|
|
|
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
|
|||
|
|
In your ~/vimrc (or c:_vimrc for Windows), add the following lines:
Then you can type in the command to toggle displaying tabs, trail spaces and eol as special characters:
Add these settings to enable normal move around keys back to the previous line or the next line cross eol:
Enjoy VIM! |
|||
|
|
|
|
With vim 7 I love vimgrep. For example to search for myfunc in all my files under my project I do.
The /j means don't jump to the first find. */.cpp means recursively search only .cpp files. To view the results you just use the quick fix window
|
|||
|
|
|
|
:%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. |
|||
|
|
|
|
Using Emacs. |
|||
|
|
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 |
|||
|
|
When you have a file (or lots of files) open and the computer crashes, you end up with annoying swap files and you have to open the originals one at a time to see if there are any unsaved changes. The problem is that you've got to hit "r" for "recover", then write out the buffer to a new file, then diff with the original... what a pain! Here's something nice which cuts down on the last few steps: Put the following in your .vimrc file:
Then after you recover the file, type :DiffOrig to view the changes from the saved version. From the vim docs: http://vimdoc.sourceforge.net/htmldoc/diff.html#:DiffOrig |
|||
|
|
|
|
|
|||
|
|
Useful in your vimrc,
Makes vim keep its temporary files in /bla/bla/temp instead of in the directory with the file being edited. |
|||
|
|
:vsplit [filename]
opens an additional page side by side with the current page (vertically splitting the window). opens an additional page, horizontally splitting the current page. you can move between pages with ctrl+w -> Arrow keys |
|||
|
|
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 |
|||
|
|