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 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. |
|||
|
|
Read/write pdf files with Vi as if they were text files: http://vim.wikia.com/wiki/Open_PDF_files |
|||
|
|
|
|
Correctly indent the entire file currently open.
Note that you may need to do |
|||
|
|
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.) |
||||
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
Delete all blank lines in a file: :g/^$/d |
||||
|
|
|
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
|
|||
|
|
|
|
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 |
|||
|
|
|
|
This one's mine: http://dotfiles.org/~maxcantor/.vimrc |
|||
|
|
|
|
Search backwards in the file for the word under the cursor. Useful for finding declarations. |
|||
|
|
|
|
"change word" while editing config files! |
|||
|
|
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 |
|||
|
|
|
|
Knowing that |
|||
|
|
To join all lines into a single line. |
|||
|
|
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 open multiple files at once in separate panes. |
|||
|
|
|
|
Vimrc to highlight tabs: syntax match Tab /\t/ |
|||
|
|
|
|
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) |
||||||||||||
|
|
|
list all lines found in current and included files that contain the word under the cursor. |
|||
|
|
|
|
In my vimrc file:
|
|||
|
|
|
|
macros Record:
Play:
|
||||
|
|
|
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. |
|||
|
|
|
|
xp transpose two characters. e.g. 'teh' move cursor over the 'e' and type 'xp' (x=cut, p=paste cut buffer) y (or yy) yank a line into the buffer d (or dd) delete line (and put in buffer) p put/paste the buffer really, handy when combined with multipliers. 5yy [move cursor] p copy 5 lines |
|||
|
|
|
|
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". |
|||
|
|
:ts to search for tags in C/C++ |
|||
|
|
Ctrl+] |
|||
|
|
|
|
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... |
|||
|
|
i also find ctrl+v for visual block and shift+v for visual line quite useful |
|||
|
|
|
|
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. |
||||
|