> ' * <C-R>=<SNR>11_LookupCharacter("'")<CR>
> Last set from ~/.vim/plugin/imaps.vim
>
> It seems there would be major repercussions to editing that file. Is
> there any autocmd I can put in my vimrc that will execute after
> latex-suite sets '?
It doesn't look like it's set by something file-type related, but just a
plugin, so it should be quite easy to fix; just put your mapping in some
file that is sourced after the file above. Probably something like
~/.vim/plugin/zzmymaps.vim would work.
:unmap! '
:inoremap ' `
or something like that. You can check the order scripts execute with
:scriptnames
If the above name doesn't work, probably a file in the slightly
different location (create the directories if needed)
~/.vim/after/plugin/something.vim
will.
Hope this helps,
Ben.
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_use" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---