Hi Marco!
On Sa, 17 Nov 2012, Marco wrote:
> Hi,
>
> the UltiSnips plugin remaps the digraph input <Ctrl-K> to
> UltiSnipsJumpBackwardTrigger(), which is a function I don't use. Is
> there a way of preventing UltiSnips to remap this key binding? I can
> assign an arbitrary key with
>
> let g:UltiSnipsJumpBackwardTrigger=<whatever_key>
>
> I don't want to *remap* this function to steal a different key
> binding.
Create a VimEnter autocommand like this:
augroup VimStartup
au!
au VimEnter * sil! nunmap <C-K>
augroup end
This will make sure, it is run after all startup scripts have been
sourced and should therefore unmap the Ctrl-K.
regards,
Christian
--
Die einen werden durch großes Lob schamhaft, die anderen frech.
-- Friedrich Wilhelm Nietzsche
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php