vote up 108 vote down star
207

There is a plethora of questions where people talk about common tricks, notably this one.

However, I don't refer to commonly used shortcuts that a noob would find cool. I am talking about a seasoned unix user (be she/he a developer, admin, both, etc), who thinks (s)he knows something 99% of us never heard or dreamed about. Something that not only makes his/her work easier, but also is COOL and hackish. After all, vim resides in the most dark-corner-rich OS in the world, thus it should have intricacies that only a few privileged know about and want to share with us.

flag
16  
If "we" keep bumping our question without adding content, maybe "we" can get more views? – mmyers May 4 at 21:15
1  
Nah, I care more about the content... I just want more views, thus more knowledge :)))) – Sasha May 4 at 21:26
5  
Seriously, though... we can all read what the stats are for ourselves. There's no need to keep bumping your question by updating it with unrelated, redundant data about the view and vote counts. That sort of vote-whoring doesn't belong in the question. – gnovice May 6 at 16:59
3  
Sasha, I removed the vote-related content as it doesn't add any value to your question at all. It's confusing to people coming from Google. Otherwise, great question. – Robert S. May 6 at 18:03
3  
Your bold bullet goes against the conventions of the site. But as long as the question is improved, s'all good. – Robert S. May 6 at 18:13
show 5 more comments

54 Answers

1 2 next
vote up 20 vote down

Let's see some pretty little IDE editor do column transposition.

:%s/\(.*\)^I\(.*\)/\2^I\1/
link|flag
1  
What does it do exactly? – Sasha Apr 7 at 18:18
1  
Switches a pair of tab-separated columns (separator arbitrary, it's all regex) with each other. – chaos Apr 7 at 18:33
1  
The ^I is meant to be a tab, incidentally. – chaos Apr 7 at 19:50
2  
This is just a regex; plenty of IDEs have regex search-and-replace. – rlbond Apr 26 at 4:11
3  
@rlbond - It comes down to how good is the regex engine in the IDE. Vim's regexes are pretty powerful; others.. not so much sometimes. – romandas Jun 19 at 16:58
show 1 more comment
vote up 142 vote down

Might not be one that 99% of Vim users don't know about, but it's something I use daily and that any Linux+Vim poweruser must know.

Basic command, yet extremely useful.

:w !sudo tee %

I often forget to sudo before editing a file I don't have write permissions on. When I come to save that file and get a permission error, I just issue that vim command in order to save the file without the need to save it to a temp file and then copy it back again.

You obviously have to be on a system with sudo installed and have sudo rights.

link|flag
1  
This is my favorite bit of vi voodo, hands down. – ojrac Apr 7 at 18:43
2  
Great command, I have lost count of the number of times this has happened to me ever since I moved to Ubuntu from Slackware. – muteW Apr 8 at 11:19
1  
Does not work in VIM for me. After about 2 seconds the password prompt times out and returns an error. <pre> [sudo] password for user: shell returned 1 </pre> – Casey May 4 at 20:09
4  
Arguably, that's even better than running vim as root! Upvoted! – Arafangion Sep 14 at 0:06
show 3 more comments
vote up 131 vote down

Something I just discovered recently that I thought was very cool:

:earlier 15m

Reverts the document back to how it was 15 minutes ago. Can take various arguments for the amount of time you want to roll back, and is dependent on undolevels. Can be reversed with the opposite command :later

link|flag
3  
Thanks, didn't know about this one. I don't know if i'd use it over multiple undos though. – skinp Apr 7 at 18:13
32  
If only life came with that! – mgb Apr 7 at 23:35
1  
How to force it works after :edit file again? – Mykola Golubyev Apr 8 at 12:32
80  
So if you open the editor, issue :later 8h you are already done for today. Amazing how smart software is these days. – Gamecat May 6 at 20:32
22  
Gamecat: the 8h later version looks nearly exactly like the version now (with some trivial cleanup) , but your editor read 8h worth of SO threads... – simon May 12 at 21:15
show 2 more comments
vote up 23 vote down

This is a nice trick to reopen the current file with a different encoding:

:e ++enc=cp1250 %:p

Useful when you have to work with legacy encodings. The supported encodings are listed in a table under encoding-values (see help encoding-values). Similar thing also works for ++ff, so that you can reopen file with Windows/Unix line ends if you get it wrong for the first time (see help ff).

link|flag
1  
I have used this today, but I think I didn't need to specify "%:p"; just opening the file and :e ++enc=cp1250 was enough. I – Ivan Vučica Jul 8 at 19:29
show 4 more comments
vote up 15 vote down

Often, I like changing current directories while editing - so I have to specify paths less.

cd %:h
link|flag
1  
I suppose it would override autochdir temporarily (until you switched buffers again). Basically, it changes directory to the root directory of the current file. It gives me a bit more manual control than autochdir does. – rampion May 8 at 2:55
show 2 more comments
vote up 55 vote down

Not exactly obscure, but there are several "delete in" commands which are extremely useful, like..

  • diw to delete the current word
  • di( to delete within the current parens
  • di" to delete the text between the quotes

Others can be found on :help text-objects

link|flag
3  
@Masi: yi(va(p deletes only the brackets – Don Reba Apr 13 at 21:41
5  
This is possibly the biggest reason for me staying with Vim. That and its equivalent "change" commands: ciw , ci( , ci" , as well as dt<space> and ct<space> – thomasrutter Apr 26 at 11:11
show 5 more comments
vote up 0 vote down

Since I put this in my.exrc I never user Ctrl+F or Ctrl+B anymore

map # ^M

map ' ^B

link|flag
1  
Please explain what do those mapping to? – Sasha Apr 7 at 21:25
4  
With this you lose the the # key, which searches backwards for the word under the cursor. It does the same as *, only * searches forwards. – Nathan Fellman Apr 19 at 18:23
show 2 more comments
vote up 7 vote down

I often use many windows when I work on a project and sometimes I need to resize them. Here's what I use:

map + <C-W>+
map - <C-W>-

These mappings allow to increase and decrease the size of the current window. It's quite simple but it's fast.

link|flag
4  
There's also Ctrl-W =, which makes the windows equal width. – sharth Apr 8 at 2:49
vote up 53 vote down
:%!xxd

Make vim into a hex editor.

link|flag
3  
And how do you revert it back? – Christian Jul 7 at 19:11
9  
:!xxd -r //To revert back from HEX – Naga Kiran Jul 8 at 13:46
1  
Warning: If you don't edit with binary (-b), you might damage the file. – jleedev Sep 22 at 16:53
1  
I actually think it's :%!xxd -r to revert it back – Andreas Grech Nov 14 at 10:37
vote up 5 vote down

Here's something not obvious. If you have a lot of custom plugins / extensions in your $HOME and you need to work from su / sudo / ... sometimes, then this might be useful.

In your ~/.bashrc:

export VIMINIT=":so $HOME/.vimrc"

In your ~/.vimrc:

if $HOME=='/root'
        if $USER=='root'
                if isdirectory('/home/your_typical_username')
                        let rtuser = 'your_typical_username'
                elseif isdirectory('/home/your_other_username')
                        let rtuser = 'your_other_username'
                endif
        else
                let rtuser = $USER
        endif
        let &runtimepath = substitute(&runtimepath, $HOME, '/home/'.rtuser, 'g')
endif

It will allow your local plugins to load - whatever way you use to change the user.

You might also like to take the *.swp files out of your current path and into ~/vimtmp (this goes into .vimrc):

if ! isdirectory(expand('~/vimtmp'))
   call mkdir(expand('~/vimtmp'))
endif
if isdirectory(expand('~/vimtmp'))
   set directory=~/vimtmp
else
   set directory=.,/var/tmp,/tmp
endif

Also, some mappings I use to make editing easier - makes ctrl+s work like escape and ctrl+h/l switch the tabs:

inoremap <C-s> <ESC>
vnoremap <C-s> <ESC>
noremap <C-l> gt
noremap <C-h> gT

link|flag
vote up 1 vote down

HOWTO: Auto-complete ctags when using vim in bash For anyone else who uses vim and ctags, I've written a small auto-completer function for bash. Add the following into your ~/.bash_completion file (create it if it does not exist):

Thanks go to stylishpants for his many fixes and improvements.

_vim_ctags() {
    local cur prev

    COMPREPLY=()
    cur="${COMP_WORDS[COMP_CWORD]}"
    prev="${COMP_WORDS[COMP_CWORD-1]}"

    case "${prev}" in
        -t)
            # Avoid the complaint message when no tags file exists
            if [ ! -r ./tags ]
            then
                return
            fi

            # Escape slashes to avoid confusing awk 
            cur=${cur////\\/}

            COMPREPLY=( $(compgen -W "`awk -vORS=" "  "/^${cur}/ { print \\$1 }" tags`" ) )
            ;;
        *)  
            _filedir_xspec
            ;;
    esac    
}   

# Files matching this pattern are excluded
excludelist='*.@(o|O|so|SO|so.!(conf)|SO.!(CONF)|a|A|rpm|RPM|deb|DEB|gif|GIF|jp?(e)g|JP?(E)G|mp3|MP3|mp?(e)g|MP?(E)G|avi|AVI|asf|ASF|ogg|OGG|class|CLASS)'

complete -F _vim_ctags -f -X "${excludelist}" vi vim gvim rvim view rview rgvim rgview gview

Once you restart your bash session (or create a new one) you can type:

Code:

~$ vim -t MyC<tab key>

and it will auto-complete the tag the same way it does for files and directories:

Code:

MyClass MyClassFactory
~$ vim -t MyC

I find it really useful when I'm jumping into a quick bug fix...

link|flag
show 3 more comments
vote up 17 vote down

Assuming you have Perl and/or Ruby support compiled in, :rubydo and :perldo will run a Ruby or Perl one-liner on every line in a range (defaults to entire buffer), with $_ bound to the text of the current line (minus the newline). Manipulating $_ will change the text of that line.

You can use this to do certain things that are easy to do in a scripting language but not so obvious using Vim builtins. For example to reverse the order of the words in a line:

:perldo $_ = join ' ', reverse split

To insert a random string of 8 characters (A-Z) at the end of every line:

:rubydo $_ += ' ' + (1..8).collect{('A'..'Z').to_a[rand 26]}.join

You are limited to acting on one line at a time and you can't add newlines.

link|flag
show 5 more comments
vote up 24 vote down

Not sure if this counts as dark-corner-ish at all, but I've only just learnt it...

:g/rgba/y A

will yank all lines containing "rgba" into the a buffer. I used it a lot recently when making Internet Explorer stylesheets.

link|flag
4  
@binOr It is the name of the register to use, it being capital means append to rather than replace the register. – dysmsyd Apr 17 at 8:11
show 4 more comments
vote up 5 vote down

% is also good when you want to diff files across two different copies of a project without wearing out the pinkies (from root of project1):

:vert diffs /project2/root/%
link|flag
vote up 6 vote down

Input a character from its hexadecimal value (insert mode):

<C-Q>x[type the hexadecimal byte]
link|flag
show 1 more comment
vote up 11 vote down

Not exactly a dark secret, but I like to put the following mapping into my .vimrc file, so I can hit "-" (minus) anytime to open the file explorer to show files adjacent to the one I just edit. In the file explorer, I can hit another "-" to move up one directory, providing seamless browsing of a complex directory structures (like the ones used by the MVC frameworks nowadays):

map - :Explore<cr>

These may be also useful for somebody. I like to scroll the screen and advance the cursor at the same time:

map <c-j> j<c-e>
map <c-k> k<c-y>

Tab navigation - I love tabs and I need to move easily between them:

map <c-l> :tabnext<enter>
map <c-h> :tabprevious<enter>

Only on Mac OS X: Safari-like tab navigation:

map <S-D-Right> :tabnext<cr>
map <S-D-Left> :tabprevious<cr>
link|flag
show 2 more comments
vote up 4 vote down

I often want to highlight a particular word/function name, but don't want to search to the next instance of it yet:

map m* *#

link|flag
vote up 3 vote down
imap jj <esc>
link|flag
1  
It will exit edit mode when you press "jj" – Trumpi May 5 at 12:57
2  
how will you type jj then? :P – hasen j Jun 12 at 6:08
3  
How often to you type jj? In English at least? – ojblass Jul 5 at 18:29
show 4 more comments
vote up 2 vote down

Put this in your .vimrc to have a command to pretty-print xml:

function FormatXml()
    %s:\(\S\)\(<[^/]\)\|\(>\)\(</\):\1\3\r\2\4:g
    set filetype=xml
    normal gg=G
endfunction

command FormatXml :call FormatXml()
link|flag
show 1 more comment
vote up 15 vote down

Want to look at your :command history?

q:

Then browse, edit and finally to execute the command.

Ever make similar changes to two files and switch back and forth between them? (Say, source and header files?)

:set hidden

:map :e#<CR>

Then tab back and forth between those files.

link|flag
show 2 more comments
vote up 4 vote down

Use the right mouse key to toggle insert mode in gVim with the following settings in ~/.gvimrc :

"
"------------------------------------------------------------------
" toggle insert mode <--> 'normal mode with the <RightMouse>-key
"------------------------------------------------------------------
nnoremap  <RightMouse> <Insert>
inoremap  <RightMouse> <ESC>
"
link|flag
vote up 3 vote down

I love :ls command.

link|flag
show 1 more comment
vote up 46 vote down

:! [command] executes an external command while you're in vim.

But add a dot after the colon -- :.! [command] -- and it'll dump the output of the command into your current window. That's : . !

For example:

:.! ls

I use this a lot for things like adding the current date into a document I'm typing:

:.! date
link|flag
4  
This is quite similar to :r! The only difference as far as I can tell is that :r! opens a new line, :.! overwrites the current line. – saffsd May 6 at 14:41
show 4 more comments
vote up 2 vote down

Replace all

  :%s/oldtext/newtext/igc

Give a to replace all :)

link|flag
vote up 35 vote down

de Duyuuuelete everything till the end of the word by pressing . at your heart's desire.

ci(xyz[Esc] -- This is a weird one. Here, i does not mean Insert mode. Instead it means Inside the parenthesis. So this sequence Cuts the text Inside parenthesis you're standing in and replaces it with "xyz". It also works inside square and figure brackets -- just do ci[ or ci{ correspondingly. Naturally, you can do di( if you just want to delete all text without typing anything. You can also do a instead of i if you want to delete the parentheses as well and not just text inside them.

ci" - cuts the text in current quotes

ciw - cuts the current word. This works just like the previous one except that ( is replaced with w.

C - cut the rest of the line and switch to Insert mode.

ZZ -- save and close current file (WAY faster than Ctrl-F4 to close the current tab!)

ddp - move current line one row down

xp -- move current character one position to the right

U - uppercase, so viwU upercases the word

~ - switches case, so viw~ will reverse casing of entire word

Ctrl+u / Ctrl+d scroll the page half-a-screen Up or Down. This seems to be more useful than the usual full-screen paging as it makes it easier to see how the two screens relate. For those who still want to scroll entire screen at a time there's Ctrl+f for Forward and Ctrl+b for Backward. Ctrl+Y and Ctrl+E scroll down or up one line at a time.

Crazy but very useful command is zz -- it scrolls the screen to make this line appear in the middle. This is excellent for putting the piece of code you're working on in the center of your attention. Sibling commands -- zt and zb -- make this line the top or the bottom one on the sreen which is not quite as useful.

% finds and jumps to the matching parenthesis.

de -- delete from cursor to the end of the word (you can also do dE to delete until the next space)

bde -- delete the current word, from left to right delimiter

df[space] -- delete up until and including the next space

dt. -- delete until next dot

dd -- delete this entire line

ye (or yE) -- yanks text from here to the end of the word

ce - cuts through the end of the word

bye -- copies current word (makes me wonder what "hi" does!)

yy -- copies the current line

cc -- cuts the current line, you can also do S instead. There's also lower cap s which cuts current character and switches to insert mode.

viwy or viwc Yank or Change current word. Hit w multiple times to keep selecting each subsequent word, use b to move backwards

vi{ - select all text in figure brackets. va{ - select all text including {}s

vi(p - highlight everything inside the ()s and replace with the pasted text

b and e move the cursor word-by-word, similarly to how Ctrl+Arrows normally do. The definition of word is a little different though, as several consecutive delmiters are treated as one word. If you start at the middle of a word, pressing b will always get you to the Beginning of the current word, and each consecutive b will jump to the Beginning of the next word. Similarly, and easy to remember, e gets the cursor to the End of the current, and each subsequent, word.

similar to b/e, capital B and E move the cursor word-by-word using only whitespaces as delimiters.

capital D (take a deep breath) Deletes the rest of the line to the right of the cursor, same as Ctrl+Shift+End/Del in normal editors (notice 2 keypresses -- Shift+D -- instead of 4)

link|flag
1  
zt is quite useful if you use it at the start of a function or class definition. – Nick Lewis Jul 17 at 16:41
show 1 more comment
vote up 3 vote down

I use vim for just about any text editing I do, so I often times use copy and paste. The problem is that vim by default will often times distort imported text via paste. The way to stop this is to use

:set paste

before pasting in your data. This will keep it from messing up. It is also sometimes helpful to turn on a high contrast color scheme. This can be done with

:color blue

I've noticed that it does not work on all the versions of vim I use but it does on most.

link|flag
vote up 7 vote down

Sometimes a setting in your .vimrc will get overridden by a plugin or autocommand. To debug this a useful trick is to use the :verbose command in conjunction with :set. For example, to figure out where cindent got set/unset:

:verbose set cindent?

This will output something like:

cindent Last set from /usr/share/vim/vim71/indent/c.vim

link|flag
show 1 more comment
vote up 9 vote down
:r! <command>

pastes the output of an external command into the buffer.

Do some math and get the result directly in the text:

:r! echo $((3 + 5 + 8))

Get the list of files to compile when writing a Makefile:

:r! ls *.c

Don't look up that fact you read on wikipedia, have it directly pasted into the document you are writing:

:r! lynx -dump http://en.wikipedia.org/wiki/Whatever
link|flag
vote up 1 vote down

Some of my must-haves are:

cscope + ctags + vim, which can be found on the web.

Some abreviations for quickly starting new code files such as:

ab cpph #include <iostream><CR>#include <string><CR>#include <cstdlib><CR>#include <cassert><CR>#include <vector><CR>#include <
stdexcept><CR>using namespace std;<CR>int main(int argc, char *argv[]) {
ab perlh #!/usr/bin/perl<CR>use strict;<CR>use warnings;<CR>
ab chdr #include <stdio.h><CR>#include <sys/types.h><CR>#include <unistd.h><CR>#include <stdlib.h><CR>#include <sys/stat.h><CR>
#include <sys/wait.h><CR>#include <string.h><CR>int main(int argc, char *argv[]) {
ab xhtmlhdr <?xml version="1.0" encoding="UTF-8"?><CR><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.o
rg/TR/xhtml1/DTD/xhtml1-strict.dtd"><CR><html xmlns="http://www.w3.org/1999/xhtml"><CR>  <head><CR>  <title></title><CR><link h
ref="style.css" rel="STYLESHEET" type="text/css"><CR></head>

For example cpph will insert a basic skeleton of a main.cc file

There is also my mapping of the function keys:

map <F1> <Esc>:w<CR>:perl $e = `./error.pl`; my ($f,$l,@w) = split(":",$e); my $w=join(":",@w); $curwin->Cursor($l,0); VIM::Msg($w);<CR>
map <F2> :wincmd w<CR>
map <F3> :wincmd s<CR>
map <F4> :wincmd v<CR>
map <F5> :wincmd o<CR>
map <F6> :sball<CR>
map <F7> :wq<CR>
map <F8> :wincmd q<CR>
map <F9> :wincmd -<CR>
map <F10> :wincmd +<CR>
map <F11> :wincmd <<CR>
map <F12> :wincmd ><CR>

In this case my F1 is mapped to put the cursor over the next error that needs to be corrected for a source code migration.

map _ ebi"^[ea"^[

This map would make _ quote a string

link|flag
vote up 0 vote down

I use Vim for everything. When I'm editing an e-mail message, I use:

gqap (or gwap)

extensively to easily and correctly reformat on a paragraph-by-paragraph basis, even with quote leadin characters. In order to achieve this funtionality, I also add:

-c 'set fo=tcrq' -c 'set tw=76'

to the command to invoke the editor externally. One noteworthy addition would be to add 'a' to the fo (formatoptions) parameter. This will automatically reformat the paragraph as you type and navigate the content, but may interfere or cause problems with errant or odd formatting contained in the message.

link|flag
1 2 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.