these are lines in my .vimrc to map UltiSnips plugin:
let g:UltiSnipsExpandTrigger="<c-j>"
let g:UltiSnipsJumpForwardTrigger="<c-j>"
let g:UltiSnipsJumpBackwardTrigger="<c-k>"
Ctrl+j it's work well to expand trigger and jump forward, but when press Ctrl+k to jump backward it does't work and return question mark in cursor like this:
function() {
?
}
Also try change jump backward to Ctrl+l still doesn't work and return ^L in cursor:
function() {
^L
}
VIM version is 7.4 with patches: 1-682, compiled it from source my shell is Zsh
Can someone help?