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
|
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 | |||||||||||||||||
feedback
|
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.
|
: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 | ||||
|
feedback
|
|
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
| ||||
|
feedback
|
|
I've been using Using gq} to format comments is also one my favorite vim tricks not found in the original vi. | ||||
|
feedback
|
|
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.
| ||||
|
feedback
|
splits current window to open the definition of the tag below the cursor | ||||
|
feedback
|
| ||||
|
feedback
|
|
Page Up/Down From Home Row I'm always using
| ||||
|
feedback
|
|
Enhanced Tab View Most programs have Tabs now, so why not enabled vim Tabs? How to use it:
Add in your .gvimrc/.vimrc:
Add in your .vimrc
| ||||
|
feedback
|
|
When updating my "blog" at work (which is just an html file) I do ":r !date" to get a timestamp. If I find myself doing a repeated operation, I will often remap ctrl-O (which isn't used so far as I know by any vim thing) via the :map command, using ctrl-V to escape the ctrl-O. So, for example, if I have a list of things x y z (and maybe 20 more things) and I want to convert that to C code like:
printf("x = %d\n", x);
printf("y = %d\n", y);
printf("z = %d\n", z);,
etc. I might do:
:map ^V^O yypkIprintf("^V^[A = %d\n", ^[JA);^[j
(ok, I didn't test the above, but, something like that.) Then I just hit ctrl-o, and it converts each line from x to
printf("x = %d\n", x);
Then, if I want to kill emacs, I head over to http://wordwarvi.sourceforge.net | ||||
|
feedback
|
|
Here's a pattern that I use a lot in keymaps. It brackets the current visual selection with a PREFIX and a SUFFIX.
Breaking it down, since that looks like line noise.
For example:
brackets the visual selection with an HTML anchor tag. | ||||
|
feedback
|
|
Remap your caps lock key to control, and then use the easier to type Ctrl-[ shortcut instead of Escape to leave insert mode. Modern Linux distributions support keyboard remapping through the keyboard settings dialog, under Windows I use SharpKeys. | ||||
|
feedback
|
|
Here are some Vim commands I use a lot.
| ||||
|
feedback
|
|
I always set my keyboard to swap Caps Lock and Escape. With the standard Ubuntu/GNOME desktop, go through the menus: System -> Preferences -> Keyboard -> Layouts tab. Then hit the "Layout Options" button, click on the triangle next to "Caps Lock key behaviour" and select "Swap ESC and CapsLock". Not strictly part of Vim, but makes Vim so much nicer to use. And other than that, use Vim for everything. Some useful extensions to allow more Vim usage:
etc. | ||||
|
feedback
|
|
Put these two lines in your .vimrc:
Use Ctrl-J/Ctrl-K to scroll up and down while keeping your cursor in the middle of the visible range. | |||||
feedback
|
|
Also in .vimrc:
In *nix
I currently use
for swapping words (When I mess up argument order or assignment sides, etc.), but this needs improvement as it doesn't always work very well. Also, I'm not sure if there's a nice way to swap two distant words (Anybody?). EDIT:
Also I like keeping a text file in
Then in vim i just do | ||||
|
feedback
|
|
Insert a comment before every line selected in visual line mode. First, select the lines which need commenting out in visual line mode (SHIFT + V). Then type this (substitute your own comment symbol):
Removal:
| ||||
|
feedback
|
|
If you are using KDE and want to paste from system clipboard you can use | ||||
|
feedback
|
|
Leader key definition:
Remaoing j/k to work properly with very long lines:
Remap something less painful to mimic ESC functionality
| ||||
|
feedback
|
|
NNyl <-- copy NN characters to the right beginning with the cursor position (ie. 7yl to copy 7 characters) p <-- paste the characters at the position after the cursor position P <-- paste the characters at the position before the cursor position | ||||
|
feedback
|
|
I have this in my .vimrc file -- it's helpful for doing Ruby programming. map R :wall!:!ruby % This lets me press 'R' and have the file saved and then execute the file in the Ruby interpreter. | ||||
|
feedback
|
|
In my vimrc file:
| ||||
|
feedback
|
|
This one's mine: http://dotfiles.org/~maxcantor/.vimrc | ||||
|
feedback
|
|
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
| ||||
|
feedback
|
|
To turn auto indent on/off for pasting with add the following to the .vimrc:
That will give you a visual cue as well | ||||
|
feedback
|
|
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. | ||||
|
feedback
|
|
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. | ||||
|
feedback
|
|
:%s/^V^M^M => remove CR (DOS/Windows => Unix text format) (^V = Ctrl-V etc.) | ||||
|
feedback
|