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

prev 1 2
vote up 4 vote down

I was sure someone would have posted this already, but here goes.

Take any build system you please; make, mvn, ant, whatever. In the root of the project directory, create a file of the commands you use all the time, like this:

mvn install
mvn clean install
... and so forth

To do a build, put the cursor on the line and type !!sh. I.e. filter that line; write it to a shell and replace with the results.

The build log replaces the line, ready to scroll, search, whatever.

When you're done viewing the log, type u to undo and you're back to your file of commands.

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

For making vim a little more like an IDE editor:

  • set nu - for line numbers in the left margin.
  • set cul - highlights the line containing the cursor.
link|flag
7  
How does that make Vim more like an IDE ?? – ldigas May 11 at 4:42
1  
After all, an IDE = editor + compiler + debugger + building tools + ... – ldigas May 12 at 21:26
show 5 more comments
vote up 2 vote down

I just found this one today via NSFAQ:

Comment blocks of code.

Enter Blockwise Visual mode by hitting CTRL-V.

Mark the block you wish to comment.

Hit I (capital I) and enter your comment string at the beginning of the line. (// for C++)

Hit ESC and all lines selected will have // prepended to the front of the line.

link|flag
1  
You can just hit ctrl+v again, mark the //'s and hit x to "uncomment" – nos Jul 28 at 20:00
show 2 more comments
vote up 13 vote down

One that I rarely find in most vim tutorials but its INCREDIBLY useful (at least to me) is the

g; and g,

to move (forward, backward) through the changelist.

Let me show how I use it. Sometimes I need to copy and paste a piece of code or string, say a hex color code in a css file, so I search, jump (not caring where the match is), copy it and then jump back (g;) to where I was editing the code to finally paste it. No need to create marks. Simpler.

Just my 2cents.

Cheers,

X.

link|flag
vote up 3 vote down

Ctrl-n while in insert mode will auto complete whatever word you're typing based on all the words that are in open buffers. If there is more than one match it will give you a list of possible words that you can cycle through using ctrl-n and ctrl-p.

link|flag
vote up 4 vote down

Want an IDE?

:make will run the makefile in the current directory, parse the compiler output, you can then use :cn and :cp to step through the compiler errors opening each file and seeking to the line number in question.

':syntax on' turns on vim's syntax highlighting.

link|flag
vote up 0 vote down

Script which will indent(beautify your ruby code)

link|flag
vote up 1 vote down

I like to use 'sudo bash', and my sysadmin hates this. He locked down 'sudo' so it could only be used with a handful of commands (ls, chmod, chown, vi, etc), but I was able to use vim to get a root shell anyway:

bash$ sudo vi +'silent !bash' +q
Password: ******
root#
link|flag
show 2 more comments
vote up 0 vote down

Macros

Macros are useful to repeat a complicated series of steps (and avoid regular expressions).

Example

Using this (horribly contrived) text file with a consistently repeated pattern, change the title and the artist, in all cases, to <title>'Tain't What You Do</title> and <artist><first>Ella</first><last>Fitzgerald</last></artist>, respectively. And imagine over 1,000 entries must be normalised in this fashion.

<?xml version="1.0"?>
<playlist creator="Yahoo AudioSearchService">
  <song>
    <title>'Tain't What You Do</title>
    <album>Ella Fitzgerald</album>
    <artist>Ella Fitzgerald</artist>
  </song>
  <song>
    <title>Tain't What You Do</title>
    <album>Perfect Jazz</album>
    <artist>Ella Fitzgerald</artist>
  </song>
  <song>
    <title>Tain't What You Do</title>
    <album>Jazz Cities</album>
    <artist>Ella Fitzgerald</artist>
  </song>
  <song>
    <title>Tain't What You Do '</title>
    <album>Ella Fitzgerald</album>
    <artist>Ella Fitzgerald</artist>
    <time>2:58</time>
  </song>
  <song>
    <title>Tain't What You Do '</title>
    <album>Ella Fitzgerald</album>
    <artist>Ella Fitzgerald</artist>
  </song>
</playlist>

Record Macro

Here are the vim commands to execute the would-be monotonous task.

  1. Go to the first line where the repeated pattern begins (third line from the top):

    1Gjj

  2. Start recording the macro.

    qq

  3. Execute the sequence of commands to make the edits.

    /<title*ENTER*
    2wlc/<ENTER
    'Tain't What You Do*ESC*
    /<artist*ENTER*
    3w2cw<first>Ella</first><last>Fitzgerald</last>ESC
    ENTER

  4. Transition to the start of the next repeated item, if needed.

  5. Stop recording the macro.

    q

  6. Run the macro 999 times.

    999@q

  7. Watch the macro give you time for a snack.

There are many record buffers, in addition to qq and @q. Any letter will work (such as qa and @a). I use qq because it is quite quick.

link|flag
vote up 0 vote down

Mappings to make movements operate on the current screen line in wrap mode. I discovered this in a comment for a Vim tip some time ago, and it has proven quite handy.

function! ScreenMovement(movement)
  if &wrap
    return "g" . a:movement
  else
    return a:movement
  endif
endfunction
onoremap <silent> <expr> j ScreenMovement("j")
onoremap <silent> <expr> k ScreenMovement("k")
onoremap <silent> <expr> 0 ScreenMovement("0")
onoremap <silent> <expr> ^ ScreenMovement("^")
onoremap <silent> <expr> $ ScreenMovement("$")
nnoremap <silent> <expr> j ScreenMovement("j")
nnoremap <silent> <expr> k ScreenMovement("k")
nnoremap <silent> <expr> 0 ScreenMovement("0")
nnoremap <silent> <expr> ^ ScreenMovement("^")
nnoremap <silent> <expr> $ ScreenMovement("$")
link|flag
vote up 1 vote down

:setlocal autoread

Auto reloads the current buffer..especially useful while viewing log files and it almost serves the functionality of "tail" program in unix from within vim.

Checking for compile errors from within vim. set the makeprg variable depending on the language let's say for perl

:setlocal makeprg = perl\ -c \ %

For PHP

set makeprg=php\ -l\ %
set errorformat=%m\ in\ %f\ on\ line\ %l

Issuing ":make" runs the associated makeprg and displays the compilation errors/warnings in quickfix window and can easily navigate to the corresponding line numbers.

link|flag
vote up 4 vote down

Map F5 to quickly ROT13 your buffer:

map <F5> ggg?G``

You can use it as a boss key :).

link|flag
vote up 3 vote down

^O and ^I

Go to older/newer position. When you are moving through the file (by searching, moving commands etc.) vim rember these "jumps", so you can repeat these jumps backward (^O - O for old) and forward (^I - just next to I on keyboard). I find it very useful when writing code and performing a lot of searches.

gi

Go to position where Insert mode was stopped last. I find myself often editing and then searching for something. To return to editing place press gi.

gf

put cursor on file name (e.g. include header file), press gf and the file is opened

gF

similar to gf but recognizes format "[file name]:[line number]". Pressing gF will open [file name] and set cursor to [line number].

^P and ^N

Auto complete text while editing (^P - previous match and ^N next match)

^X^L

While editing completes to the same line (useful for programming). You write code and then you recall that you have the same code somewhere in file. Just press ^X^L and the full line completed

^X^F

Complete file names. You write "/etc/pass" Hmm. You forgot the file name. Just press ^X^F and the filename is completed

^Z or :sh

Move temporary to the shell. If you need a quick bashing:

  • press ^Z (to put vi in background) to return to original shell and press fg to return to vim back
  • press :sh to go to sub shell and press ^D/exit to return to vi back
link|flag
vote up 0 vote down

:sp %:h - directory listing / file-chooser using the current file's directory

(belongs as a comment under rampion's cd tip, but I don't have commenting-rights yet)

link|flag
vote up 0 vote down

per this thread

To prefix a set of lines I use one of two different approaches:

One approach is the block select (mentioned by sth). In general, you can select a rectangular region with ctrl-V followed by cursor-movement. Once you've highlighted a rectangle, pressing shift-I will insert characters on the left side of the rectangle, or shift-A will append them on the right side of the rectangle. So you can use this technique to make a rectangle that includes the left-most column of the lines you want to prefix, hit shift-I, type the prefix, and then hit escape.

The other approach is to use a substitution (as mentioned by Brian Agnew). Brian's substitution will affect the entire file (the % in the command means "all lines"). To affect just a few lines the easiest approach is to hit shift-V (which enables visual-line mode) while on the first/last line, and then move to the last/first line. Then type:

:s/^/YOUR PREFIX/

The ^ is a regex (in this case, the beginning of the line). By typing this in visual line mode you'll see '<,'> inserted before the s automatically. This means the range of the substitution will be the visual selection.

Extra tip: if your prefix contains slashes, you can either escape them with backslash, or you can use a different punctuation character as the separator in the command. For example, to add C++ line comments, I usually write:

:s:^:// :

For adding a suffix the substitution approach is generally easier unless all of your lines are exactly the same length. Just use $ for the pattern instead of ^ and your string will be appended instead of pre-pended.

If you want to add a prefix and a suffix simultaneously, you can do something like this:

:s/.*/PREFIX & SUFFIX/

The .* matches the whole line. The & in the replacement puts the matched text (the whole line) back, but now it'll have your prefix and suffix added.

BTW: when commenting out code you'll probably want to uncomment it later. You can use visual-block (ctrl-V) to select the slashes and then hit d to delete them, or you can use a substitution (probably with a visual line selection, made with shift-V) to remove the leading slashes like this:

:s:// ::

link|flag
vote up 0 vote down

Mine is using macros instead of searches - combining a macro with visual mode is sometimes more efficient.

link|flag
vote up 1 vote down
" insert range ip's
"
"          ( O O )
" =======oOO=(_)==OOo======

for i in range(1,255) | .put='10.0.0.'.i | endfor
link|flag
vote up 1 vote down
==========================================================
In normal mode
==========================================================
gf ................ open file under cursor in same window --> see :h path
Ctrl-w f .......... open file under cursor in new window
Ctrl-w q .......... close current window
Ctrl-w 6 .......... open alternate file --> see :h #
gi ................ init insert mode in last insertion position
'0 ................ open last edited file
link|flag
vote up 0 vote down

:set equalprg=perltidy

link|flag
vote up 3 vote down

Macros can call other macros, and can also call itself.

eg:

qq0dwj@q

...will delete the first word from every line until the end of the file.

This is quite a simple example but it demonstrates a very powerful feature of vim

link|flag
vote up 0 vote down

Neither of the following is really diehard, but I find it extremely useful.

Trivial bindings, but I just can't live without. It enables hjkl-style movement in insert mode (using the ctrl key). In normal mode: ctrl-k/j scrolls half a screen up/down and ctrl-l/h goes to the next/previous buffer. The µ and ù mappings are especially for an AZERTY-keyboard and go to the next/previous make error.

imap <c-j> <Down>
imap <c-k> <Up>
imap <c-h> <Left>
imap <c-l> <Right>
nmap <c-j> <c-d>
nmap <c-k> <c-u>
nmap <c-h> <c-left>
nmap <c-l> <c-right>

nmap ù :cp<RETURN>
nmap µ :cn<RETURN>

A small function I wrote to highlight functions, globals, macro's, structs and typedefs. (Might be slow on very large files). Each type gets different highlighting (see ":help group-name" to get an idea of your current colortheme's settings) Usage: save the file with ww (default "\ww"). You need ctags for this.

nmap <Leader>ww :call SaveCtagsHighlight()<CR>

"Based on: http://stackoverflow.com/questions/736701/class-function-names-highlighting-in-vim
function SaveCtagsHighlight()
    write

    let extension = expand("%:e")
    if extension!="c" && extension!="cpp" && extension!="h" && extension!="hpp"
    	return
    endif

    silent !ctags --fields=+KS *
    redraw!

    let list = taglist('.*')
    for item in list
    	let kind = item.kind

    	if     kind == 'member'
    		let kw = 'Identifier'
    	elseif kind == 'function'
    		let kw = 'Function'
    	elseif kind == 'macro'
    		let kw = 'Macro'
    	elseif kind == 'struct'
    		let kw = 'Structure'
    	elseif kind == 'typedef'
    		let kw = 'Typedef'
    	else
    		continue
    	endif

    	let name = item.name
    	if name != 'operator=' && name != 'operator ='
    		exec 'syntax keyword '.kw.' '.name
    	endif
    endfor
    echo expand("%")." written, tags updated"
endfunction

I have the habit of writing lots of code and functions and I don't like to write prototypes for them. So I made some function to generate a list of prototypes within a C-style sourcefile. It comes in two flavors: one that removes the formal parameter's name and one that preserves it. I just refresh the entire list every time I need to update the prototypes. It avoids having out of sync prototypes and function definitions. Also needs ctags.

"Usage: in normal mode, where you want the prototypes to be pasted:
":call GenerateProptotypes()
function GeneratePrototypes()
    execute "silent !ctags --fields=+KS ".expand("%")
    redraw!
    let list = taglist('.*')
    let line = line(".")
    for item in list
    	if item.kind == "function"  &&  item.name != "main"
    		let name = item.name
    		let retType = item.cmd
    		let retType = substitute( retType, '^/\^\s*','','' )
    		let retType = substitute( retType, '\s*'.name.'.*', '', '' ) 

    		if has_key( item, 'signature' )
    			let sig = item.signature
    			let sig = substitute( sig, '\s*\w\+\s*,',        ',', 	'g')
    			let sig = substitute( sig, '\s*\w\+\(\s)\)', '\1', '' )
    		else
    			let sig = '()'
    		endif
    		let proto = retType . "\t" . name . sig . ';'
    		call append( line, proto )
    		let line = line + 1
    	endif
    endfor
endfunction


function GeneratePrototypesFullSignature()
    "execute "silent !ctags --fields=+KS ".expand("%")
    let dir = expand("%:p:h");
    execute "silent !ctags --fields=+KSi --extra=+q".dir."/* "
    redraw!
    let list = taglist('.*')
    let line = line(".")
    for item in list
    	if item.kind == "function"  &&  item.name != "main"
    		let name = item.name
    		let retType = item.cmd
    		let retType = substitute( retType, '^/\^\s*','','' )
    		let retType = substitute( retType, '\s*'.name.'.*', '', '' ) 

    		if has_key( item, 'signature' )
    			let sig = item.signature
    		else
    			let sig = '(void)'
    		endif
    		let proto = retType . "\t" . name . sig . ';'
    		call append( line, proto )
    		let line = line + 1
    	endif
    endfor
endfunction
link|flag
vote up 0 vote down

Just before copying and pasting to stackoverflow:

:retab 1
:% s/^I/ /g
:% s/^/    /

Now copy and paste code.

As requested in the comments:

retab 1. This sets the tab size to one. But it also goes through the code and adds extra tabs and spaces so that the formatting does not move any of the actual text (ie the text looks the same after ratab).

% s/^I/ /g: Note the ^I is tthe result of hitting tab. This searches for all tabs and replaces them with a single space. Since we just did a retab this should not cause the formatting to change but since putting tabs into a website is hit and miss it is good to remove them.

% s/^/    /: Replace the beginning of the line with four spaces. Since you cant actually replace the beginning of the line with anything it inserts four spaces at the beging of the line (this is needed by SO formatting to make the code stand out).

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

Due to the latency and lack of colors (I love color schemes :) I don't like programming on remote machines in putty. So I developed this trick to work around this problem. I use it on windows.

You will need

  • 1x gvim
  • 1x rsync on remote and local machines
  • 1x ssh private key auth to the remote machine so you don't need to type the password
  • 1x pageant
  • 1x putty

Setting up remote machine

Configure rsync to make your working directory accessible. I use a ssh tunnel and only allow connections from the tunnel:

address = 127.0.0.1
hosts allow = 127.0.0.1
port = 40000
use chroot = false
[bledge_ce]
    path = /home/xplasil/divine/bledge_ce
    read only = false

Then start rsyncd: rsync --daemon --config=rsyncd.conf

Setting up local machine

Install rsync from cygwin. Start pageant and load your private key for the remote machine. If you're using ssh tunelling, start putty to create the tunnel. Create a batch file push.bat in your working directory which will upload changed files to the remote machine using rsync:

rsync --blocking-io *.cc *.h SConstruct rsync://localhost:40001/bledge_ce

SConstruct is a build file for scons. Modify the list of files to suit your needs. Replace localhost with the name of remote machine if you don't use ssh tunelling.

Configuring Vim That is now easy. We will use the quickfix feature (:make and error list), but the compilation will run on the remote machine. So we need to set makeprg:

set makeprg=push\ &&\ plink\ -batch\ xplasil@anna.fi.muni.cz\ \"cd\ /home/xplasil/divine/bledge_ce\ &&\ scons\ -j\ 2\"

This will first start the push.bat task to upload the files and then execute the commands on remote machine using ssh (plink from putty suite). The command first changes directory to the working dir and then starts build (I use scons).

The results of build will show conviniently in your local gvim errors list.

link|flag
vote up 0 vote down

I collected these over the years.

" Pasting in normal mode should append to the right of cursor
nmap <C-V>      a<C-V><ESC>
" Saving
imap <C-S>      <C-o>:up<CR>
nmap <C-S>      :up<CR>
" Insert mode control delete
imap <C-Backspace> <C-W>
imap <C-Delete> <C-O>dw
nmap    <Leader>o       o<ESC>k
nmap    <Leader>O       O<ESC>j
" tired of my typo
nmap :W     :w
link|flag
prev 1 2

Your Answer

Get an OpenID
or

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