Vim is my editor of choice, and I feel I am above average in my use of it. I do recognize, though, that the feature list of vim is huge. With this in mind, I was wondering what features you vim users out there use on a regular basis.
closed as not constructive by random, gnat, alecxe, brasofilo, dda May 19 at 6:00
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
In my
I had some abbreviation configured in the past for C style box comments and skeletons of HTML pages etc. Like TextMate users seem to like ( When editing,
Hardly use anything else to be frank. Pretty vanilla stuff, none of the more complex features really stuck ;-) |
||||
|
|
|
my favourite
runs a macro recorded in h for every match of search-string...divine :D and the fd to quickly move the cursor to the next occurrence of 'd'...very useful while selecting in visual mode |
||||
|
|
|
Oh my goodness, I can't believe no one has listed these:
you can replace Oh yeah, and |
||||
|
|
|
The following google video was good: 7 Habits For Effective Text Editing 2.0 |
||||
|
|
|
A fantastic list is David Rayner's Best of Vim Tips. I guarantee you could find something new in there every week for the next year. |
||||
|
|
|
One of the ones I use most is |
||||
|
|
|
Put your cursor on a function and press |
|||||||||
|
|
Most Vim users are probably aware of them, but I also find myself using the movment commands
With the cursor on the first line in normal mode, you can instantly jump to the errant '3' in the misspelled word 'Weath3r' by pressing When combined with counts and other commands (for me, usually
can be used to delete everything up to and including the 2nd instance of the ':' character on the current line. |
||||
|
|
|
Macros and ^p and ^n. Most people watching type in an editor think that I am the worlds fastest typist with my use (and abuse) of ^p and ^n. If you don't know what they do they are pseudo intellisense for Vim (basically completes a word based on other words in the document, works incredibly well for well named variables and function names). If you use TAGS it also uses the tags file (then ^t to just to the function is also very useful). Another favorite is * in the normal mode, to search for the next occurrence of the word underneath your cursor (but that has already been mentioned). |
||||
|
|
|
Something I recently learned:
|
||||
|
|
A lot of other commands are embedded in my brain (or fingers) somewhere, so I'm not sure what those are. At this point I'm going to make stuff up (because I don't use those commands (especially abbreviations). So I will stop. |
||||
|
|
|
Here are two screencasts for beginners that I found useful as well: |
||||
|
|
|
|
||||
|
|
|
Visual block Insert: Ctrl-V to enter Visual (Block) mode, then Shift-I to do insert after right most highlighted point on all highlighted lines. Great for indenting text where it's not the first thing on the line, or for pre-pending a bunch of variables with a common prefix, where there's no quick regex to match all of them.
search/replace within a visual selection ( Similarly, |
||||
|
|
|
Another one is extensive use of windows using the
^w_ - maxmize current window ^wc - close the active window Combine that with various buffers using :e < filename > to open a file and :b< number > or even b:part_of_the_filename<TAB> to switch between open files, and I can browse code very quickly. Now combine that with tags and you have even better browsing capabilities. Create a tags file with :!ctags -R . and then you can jump to the declaration of an identifier with ^] and back to where you were with ^T. The combination of windows, buffers and tags is a killer! |
||||
|
|
|
replace all occurrences of PATTERN (which is a regular expression) with REPLACE
Simple but I use it constantly. The other thing I love, which I can't think up a great example of right now, is being able to paste commands into the editor. |
||||
|
|
|
You can consult Vim Tips sorted by ratings, the first tip being Best of VIM Tips. As for me, I find gv (reselect last selection) and CTRL-O & CTRL-I (Go to older / newer cursor position in jump list) very usefull. Oh, and CTRL-V {motion} SHIFT-I {write some text} <ESC> (writes the text on each line of the selected block). And |
|||||
|
|
Use Vim-style movement (no arrow keys, PgUp/PgDown, etc.) 'h' 'j' 'k' 'l' for movement (Up, Down, Left, Right) |
|||||
|
|
* or # for searching in normal mode was something i wish i knew from day one. Just some vim scripts that i found helpful nerdtree, project listing/folders,files. Can open files in new tabs, split,etc nerdcomment, same author as nerdtree allows you to bind commands to comment code for any language and also has different types of formatting. fuzzyfinder, also you to search for files/buffers/tags using any sort of pattern snippets, code snippets for most languages. |
||||
|
|
|
You will probably get something from watching this presentation by Bram Moolenaar at a Google Tech Talk - it's all about power tips in Vim and quite well presented. Not for beginners, I suspect |
||||
|
|
|
I used to use the exuberant ctags a lot, but now I don't write C. I used the syntax-highlighting-to-colored-HTML-output script frequently. I appreciate the brace highlighting and smart indenting quite a bit. The help is my most often used vim command feature possibly followed by gqq for wrapping. Otherwise I generally use base vi features, where I'd put '/' at the top of my list because I'm not actually as familiar with movement keys, and ':%s/x/y/g' as near the top. my .vimrc turns on syntax highlighting, and I often invoke it with a glob to do bulk find replaces across a set of files. |
||||
|
|
|
The often overlooked '.' command. It redoes the last command. I find it very useful when doing a search & replace type activity where you don't want to replace all instances. You can do a search (using '/'), do the replace (with a 'c' or maybe 'r'), find the next instance (using 'n'), and either redo the edit (with '.') or skip to the next one (another 'n'). |
||||
|
|
Homogenizes the indentation style of the file, based on your current settings. (shiftwidth, expandtab, etc) |
||||
|
|
|
:r! shellcommand (replace shellcommand with shell command of your choice). This will append the results of the shell command to the current buffer. |
||||
|
|
|
which opens the file in a new tab, instead. |
||||
|
|
|
Multi-file search replace etc.:
|
||||
|
|
|
Exuberant ctags directly integrated is my most frequently used feature: Control+] jumps to the tag (definition) for the symbol under the cursor. Control+t pops off the tag stack, effectively going back from whence you came. In your .vimrc file, add this:
You can expand this with the taglist. |
||||
|
|
|
Learn to use and love the search/replace feature: :[range]s/reg_ex/text_to_replace |
||||
|
|