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 |
||||
|
|
|
Using Emacs. |
|||
|
|
:%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. |
|||
|
|
|
|
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
|
|||
|
|
|
|
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! |
|||
|
|
|
|
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
|
|||
|
|
I've been using Using gq} to format comments is also one my favorite vim tricks not found in the original vi. |
|||
|
|
|
|
Edit command lines with vim commands under the bash shell
Now you can edit command lines using the vim syntax! Example:
|
|||
|
|
|
|
Puts all backup files (file.txt~) in the specified directory instead of cluttering up your working directories. |
|||
|
|
My favorite is: CTRL-A: Increment a number under the cursor. 99 becomes 100. It's really cool. |
|||
|
|
|
|
To turn auto indent on/off for pasting with add the following to the .vimrc:
That will give you a visual cue as well |
|||
|
|
|
|
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:
|
|||
|
|
|
|
|
|||
|
|
|
|
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.
|
|||
|
|
|
|
Jumps.
Mark location under [a-z]
Jump to marked location
Jump to last location
Jump to last edit |
|||
|
|
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 |
|||
|
|
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. |
|||
|
|
|
|
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") |
|||
|
|
When I use vim for writing a tidy journal, notes, etc
to format the current paragraph. |
|||
|
|
|
|
ZZ = :wq |
|||
|
|
|
|
splits current window to open the definition of the tag below the cursor |
|||
|
|
|
|
in escape mode: |
|||
|
|
|
|
: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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
|
|||
|
|
|
|
|
|||
|
|
|
|
:%s/^V^M^M => remove CR (DOS/Windows => Unix text format) (^V = Ctrl-V etc.) |
|||
|
|
|
|
|
|||
|
|
|
|
viwp - replace the word under the cursor with what's in the unnamed register. What's nice about this is that you don't need to be at the beginning of the word to do it. |
|||
|
|
|
|
Appending the same text to multiple linesIf you have multiple lines and want to append the same text to all lines you can use Ctrl-V to start the visual block mode, move to select the lines, then press $ to extend the selection to the end of the line and the press A to append text (enters insert mode). When you exit insert mode (ESC) the typed text will be appended to all selected lines. This is useful e.g to append semi-colons and other stuff you need to do when programming. Summary:
PS: use I in visual block mode to insert text in multiple lines |
|||
|
|