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
|
176
|
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 |
||||
|
|
|
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. |
|||
|
|
|
|
macros Record:
Play:
|
||||
|
|
|
In my vimrc file:
|
|||
|
|
|
|
list all lines found in current and included files that contain the word under the cursor. |
|||
|
|
|
|
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) |
||||||||||||
|
|
|
Vimrc to highlight tabs: syntax match Tab /\t/ |
|||
|
|
|
|
To open multiple files at once in separate panes. |
|||
|
|
|
|
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 |
||||
|
|
|
To join all lines into a single line. |
|||
|
|
Knowing that |
|||
|
|
For turning on syntax highlighting
To set the code folding method to be based on the language syntax, provided that the syntax is available for your language of choice. You can put this in your .vimrc file, omit the colon if you do.
To close a particular fold (under the cursor)
To open a particular fold (under the cursor)
To unfold all folds by one level
To collapse all folds by one level
Unfold ALL folds
collapse ALL folds |
|||
|
|
|
|
"change word" while editing config files! |
|||
|
|
Search backwards in the file for the word under the cursor. Useful for finding declarations. |
|||
|
|
This one's mine: http://dotfiles.org/~maxcantor/.vimrc |
|||
|
|
|
|
dG - delete to the end of the file :vsplit file2 - show current file and file2 side by side. Could also open file1 and file2 at the same time with -o (horizontal split) or -O (vertical split) options |
|||
|
|
|
|
I have some shortcuts, ie: 1.Sort a file with a few way
2.Open new file from current path with vertical split
3.Grep file with match
4.Change show file modes
5.Turn on/off highlight
6.Turn on/off numbering
7.Run - perl
8.Copy file to specified server
|
|||
|
|
|
|
Delete all blank lines in a file: :g/^$/d |
||||
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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.) |
||||
|
|
|
Correctly indent the entire file currently open.
Note that you may need to do |
|||
|
|
Read/write pdf files with Vi as if they were text files: http://vim.wikia.com/wiki/Open_PDF_files |
|||
|
|
|
|
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. |
|||
|
|
|
||||
|
|
|
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 |
|||
|
|
|
|
: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 |
|||
|
|
Useful in your vimrc,
Makes vim keep its temporary files in /bla/bla/temp instead of in the directory with the file being edited. |
|||
|
|
|
|||
|
|
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 |
|||
|
|
|
|
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 |
|||