You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by Jeff Turner <je...@socialchange.net.au> on 2001/08/14 01:46:49 UTC

Jumping to a build.xml target in vim

A useful thing to have in your .vimrc, for quickly jumping to an Ant
target definition:

map <F8> :let nr = input("Enter target name: ")<Bar>exe "normal /target name=\"" . nr ."\"\n"<CR>

--Jeff