vote up 1 vote down star

I have the following code in .vimrc

" to eliminate the effect of the line 1560 in taglist.vim 
if v:version >= 700
         nnoremap <buffer> <silent> t
                     \ 
         nnoremap <buffer> <silent> <C-t>
                     \                                                                                                                                                                                        
         endif

The command does what it should do. However, the command gives also me the following error at Vim's startup

No mapping found
No mapping found

How can you eliminate the keyboard shortcut, such that you do not get the message in Taglist but you can still use the default "T" for browsing up in Dvorak?

flag

1  
@Masi - Hi, me again. I've just installed ctags and taglist to check this out. Anyway, the "verdict" is this. There are two mappings in taglist.vim, line 1560, that are mapped to "t" and "C-t". Some didn't like those shortcuts, and that's why the above mappings were introduced. So, what these lines do is they "cancel" out those taglist.vim mappings. If you add "silent" at the beggining you should no more see "no mapping found" message. If you do however wish to keep the mappings from taglist.vim just delete those lines in vimrc. – ldigas May 10 at 18:41
I added "silent"s to the above code: silent noremap ... silent noremap ... --- It gives no alerts but it also eliminates the T at taglist. – Masi May 10 at 19:09
1  
As I said, if you wish to keep the "t" just delete those lines. – ldigas May 10 at 19:14
Yes, it seems to be the only way. Thank you for your answers! – Masi May 11 at 7:42

1 Answer

vote up 1 vote down check

Delete it. I don't use taglist, but the example you gave in your post does nothing. It is supposed to map something to something, but the right side is missing, i.e. something is supposed to being mapped to "t" and "C-t", but that something isn't defined.

Or, you can do this:

:silent nnoremap <buffer> <silent> t (and analoguous for the second line)

(mapping stays but the message will not be displayed)

link|flag
@Idigas: Your command does elinates the error message, but it also block T in TagList. – Masi May 9 at 19:20
Well, don't do them both. If you do only ":silent ..." it should do nothing except repress the error message." – ldigas May 9 at 19:50
Do you mean to have the following: "silent nnoremap <buffer> <silent> t" in .vimrc? It eliminates the keybinding and also the error, so it is not working. – Masi May 10 at 5:45
1  
@Masi - yes. What that does is supress the error message. Nothing else. But you have another problem. As I said, you are mapping something to nothing. A normal mapping of your type looks somethign like this, for example ":silent nnoremap <buffer> <silent> t :w<cr>" (for example, a mapping which will save the file when you press t". But your mapping is missing the right hand side - e.g. iz does nothing. Look at the mappings in your vimrc or somewhere and compare them to this one. – ldigas May 10 at 12:06
1  
I don't know what the supposed mapping is supposed to do, but it is not doing that because of these lines. If it is doing something, it is not because of these lines. – ldigas May 10 at 12:08

Your Answer

Get an OpenID
or

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