[Vim-latex-devel] Add a placeholder in my keymap
Brought to you by:
srinathava,
tmaas
|
From: Rudra B. <rud...@ao...> - 2013-02-10 09:39:24
|
Dear friends,
I have added this keymap in my vimrc:
nmap <C-F12> :call Insrt_frame()
function! Insrt_frame()
:put='\begin{frame}'
:put='\frametitle{<++>}'
:put=''
:put='\end{frame}'
endfunction
I am trying to put the cursor on the \frametitle.
How can I achieve this?
|