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
|
177
|
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 |
||||
|
|
|
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
|
|||
|
|
|
|
To turn auto indent on/off for pasting with add the following to the .vimrc:
That will give you a visual cue as well |
|||
|
|
|
|
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. |
|||
|
|
|
|
splits current window to open the definition of the tag below the cursor |
|||
|
|
|
|
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. |
|||
|
|
|
|
:%s/^V^M^M => remove CR (DOS/Windows => Unix text format) (^V = Ctrl-V etc.) |
|||
|
|
|
|
viwp - replace the word under the cursor with what's in the unnamed register. What's nice about this is that you don't need to be at the beginning of the word to do it. |
|||
|
|
|
|
Page Up/Down From Home Row I'm always using
|
|||
|
|
|
|
CamelCase Motion. Let's you move through and delete/edit CamelCase words. |
|||
|
|
|
|
I am using this snippet in my .vimrc to select a block of code and adjust indentation by pressing < or > multiple times.
|
||
|
|
|
|
gg = G (go to top of file and tidy the format) very usefull :D |
|||
|
|
|
|
Indent source line(s) one tab to the left or right
Remove trailing white-space once the file is saved
Edit another file without saving changes made to the file currently being edited:
|
|||
|
|
|
|
Some times I open files with vim to delete all trailing white spaces: (particularly heplful for git users aswell :)):
If you want to highlight trailing whitespaces (grey color), add the following to your .vimrc:
|
|||
|
|
|
|
The very best!
no more beep! |
|||
|
|
|
|
Switch spellcheck languages The function:
And the bindings:
|
|||
|
|
|
|
Here are some Vim commands I use a lot.
|
|||
|
|
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. |
||||
|
|
|
I keep a backup of all my files I edit in Vim using the commands below:
The code will dump all files in to It uses the Unix |
|||
|
|
|
|
They actually match the first and second level of closing/opening braces. |
|||
|
|
|
|
Make vimdiff a great merge tool
This will allow you to use F7 and F8 to go to the next/previous change and F2 and F3 will copy changes from left to right and vice-versa. |
|||
|
|
|
|
Using Emacs. |
|||