Where do I get a list of all default IMAPS of the imaps.vim plugin?

Where do I get a list of all default IMAPS of the imaps.vim plugin?


begin{figure}[h]
centerline{psfig{figure=<+eps file+>}}
caption{<+caption text+>}
label{fig:<+label+>}
end{figure}<++>

:verbose imap

" Arguments do not matter, all you need is to start a debugger
" with appropriate context
debug call IMAP(0,0,0)
" step into IMAP function
s
" Generate and show a table filetype - list of mapping LHSs
echo "FttLHSsn".join(map(items(filter(copy(s:), 'v:key[:3] is# "LHS_"')), 'v:val[0][4:(stridx(v:val[0], "_", 4)-1)]."t".join(split(v:val[1], "\\|"))'), "n")
" Interrupt function so that it won’t do anything
q
" Note that in debugger “q” command is doing an interrupt, not quits vim.

No comments:

Post a Comment