I want to map tab
to the following button sequence: ctrl+x
-> tab
to a method call in .vimrc (in insert mode). The method is also in .vimrc
I kwow i should use inoremap <tab> button-sequence=method()<CR>
But how should I write the button sequence in the row above?
Thank you