I'm trying to map my own shortcuts in vi. I want to be able to open a splitted window containing the declaration of the function I'm calling the shortcut on. something like this in my vimrc:

nmap <unique> <silent> <Leader>tg :exe 'vsplit'\| equivalent of <C-]>

but what's the equivalent of C-] in command mode ?

link|improve this question

50% accept rate
feedback

migrated from superuser.com Jan 3 '10 at 19:04

This question came from our site for computer enthusiasts and power users.

4 Answers

up vote 3 down vote accepted

To open vim at the line containing the tag foobar type this at the shell commandline:

vim -t foobar

To jump to the same tag on the vim commandline type:

:tag foobar

If you want to split the window and jump to the tag in the new window type this in vim's commandline:

:stag foobar

If you want a keystroke that specifies "the word under the cursor", then according to this question, you can use the CTRL+R CTRL+W to get that:

:tag CTRL+R CTRL+W

You can also use :

:nmap <leader>w :tag <c-r>=expand("<cword>")<c-r>

Now typing <leader>+w (which is \ in my setup, so I'd press \w) will be the same as typing :tag <word under the cursor>

link|improve this answer
but how can I call tag or stag with the keyword under the cursor ? {ident} doesn't seem to work.. – kamou Jan 4 '10 at 10:54
yes, but I need it as a command for my key bindings I tried: nmap <unique> <silent> <Leader>tg :exe 'vsplit \| tag <C-r> <C-w>'<CR> but it didn't work... I just got my vi splitted – kamou Jan 4 '10 at 13:35
thaks, expand("<cword>") was just what I needed ! – kamou Jan 4 '10 at 21:57
this is the line I added in my rc file for those who could be interested: nmap <unique> <silent> <Leader>tv :exe 'vertical stag <c-r>=expand("<cword>")<CR>'<CR> – kamou Jan 4 '10 at 22:21
feedback

See :help CTRL-]:

CTRL-] Jump to the definition of the keyword under the cursor. Same as ":tag {ident}", where {ident} is the keyword under or after cursor.

Edit

Not sure if there is a built-in for this, but the following seems to match the keyword "under or after" the cursor:

matchstr(getline('.'), '\%'.col('.').'c\s*\zs\k\+')
link|improve this answer
seems like {ident} doesn't match the keyword under the cursor. :( it just has to be replaced by the tag you want. got any idea to get the keyword under the cursor ? – kamou Jan 4 '10 at 10:57
yes, {ident} is for syntax highlighting in vim's documentation – Michael Jan 11 '10 at 18:27
feedback

you could also write (to map it for example to Ctrl-Q):

:nmap <C-Q> <C-]>

you could also consider :nn[oremap] in such cases to avoid nested/recursive mappings.

link|improve this answer
feedback

You can jump to the definition of the word under the cursor with exe "tag " . expand("<cword>"). The expand function replaces special tokens with their meaning - this includes a filename under the cursor, the current file name, etc. See Vim's help for the expand() function for the full set.

Alternatively you could use the :normal command, which lets you execute normal-mode key sequences from an :ex command.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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