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 |
||||
|
|
|
|
||||
|
|
|
When I use vim for writing a tidy journal, notes, etc
to format the current paragraph. |
|||
|
|
|
|
Read contents of an external command into the doc: :r !ls |
|||
|
|
|
|
:g/search/p Grep inside this file and print matching lines. You can also replace p with d to delete matching lines. |
||||
|
|
|
Edit command lines with vim commands under the bash shell
Now you can edit command lines using the vim syntax! Example:
|
|||
|
|
|
|
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 :-) |
|||
|
|
|
|
Visual mode for selecting text to copy, delete, etc. |
|||
|
|
|
|
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 |
|||
|
|
|
|
Puts all backup files (file.txt~) in the specified directory instead of cluttering up your working directories. |
|||
|
|
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:
|
|||
|
|
|
|
Remove whitespace from line endings on save.
Put this in your vimrc, and add auto-commands for any file types you want to remove extra whitespace from. The last line above makes this remove trailing whitespace from C files. |
|||
|
|
|
|
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. |
|||
|
|
|
|
I know it's basic, but my favorite vi feature is still the % key, which lets you find matching braces, brackets, or parentheses. I still remember learning it from a sentence in a Perl book by Larry Wall which said something about "at least if you do this you'll let some poor schmuck bounce on the % key in vi." I looked it up, saw what it did, and I was hooked. It's been nearly ten years, and I still obsessively bounce on the % key while I'm sitting and thinking about what to do next, not to mention to help me match up code blocks and parentheses. |
|||
|
|
|
|
Search backwards in the file for the word under the cursor. Useful for finding declarations. |
|||
|
|
|
|
Using Esc all the time is going to cause RSI or something, I'm sure...plus its not fast enough for me. Instead, in my .vimrc I have
For the very few times I need to type 'ii', I just need to type i 3 times, which types one i, exits to normal mode, then another i to type a 2nd i. |
|||
|
|
|
|||
|
|
|
|||
|
|
|
|
Jumps.
Mark location under [a-z]
Jump to marked location
Jump to last location
Jump to last edit |
|||
|
|
|
|||
|
|
|
|
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 |
|||
|
|
|
|
[[ - Beginning of the current function block. z - position the current line to the top of the screen. |
|||
|
|
|
|
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. |
|||
|
|
|
|
u <-- undo :-) |
||||
|
|
|
ZZ - Save & Exit |
|||
|
|
|
|
i also find ctrl+v for visual block and shift+v for visual line quite useful |
|||
|
|
|
|
Vimrc to highlight tabs: syntax match Tab /\t/ |
|||
|
|
|
|
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. |
||||
|
|
|
To open multiple files at once in separate panes. |
|||
|
|
|
|
Knowing that |
|||
|
|
"change word" while editing config files! |
|||