I would like to list the available snippets using a simple keystroke. However I can't seem to do this. Here are my UltiSnips settings:
let g:UltiSnipsExpandTrigger="<tab>"
let g:UltiSnipsJumpForwardTrigger="<tab>"
let g:UltiSnipsJumpBackwardTrigger="<s-tab>"
let g:UltiSnipsListSnippets="<c-;>"
let g:UltiSnipsSnippetsDir="~/.vim/ultisnips"
let g:UltiSnipsEditSplit="vertical"
"Open UltiSnips edit function
nmap <leader>se :UltiSnipsEdit<cr>
I do have vim-snippets installed and a few snippets of my own defined.
Nothing happens when I press CTRL-;
. I've tried changing the mapping to a variety of different keystrokes, but nothing happens. I thought some other plugin I'm using would be interfering with the chosen keystroke so I've changed it a number of times and still don't get the listing. Regardless of what setting I have, I can't see the list of snippets.
What magic must I invoke to see the list of snippets?