- Added FAQ.

This commit is contained in:
Shougo Matsushita 2013-02-24 22:30:59 +09:00
parent d036dffa89
commit 4cb06a9678
1 changed files with 11 additions and 0 deletions

View File

@ -726,6 +726,17 @@ A: Please try below settings. It defines snipMate function.
>
let g:neosnippet#enable_snipmate_compatibility = 1
<
Q: Cannot jump over placeholder
https://github.com/Shougo/neosnippet/issues/120
A: You must use smap in .vimrc.
>
imap <expr><TAB> neosnippet#expandable_or_jumpable() ?
\ "\<Plug>(neosnippet_expand_or_jump)" : "\<TAB>"
smap <expr><TAB> neosnippet#expandable_or_jumpable() ?
\ "\<Plug>(neosnippet_expand_or_jump)" : "\<TAB>"
<
Because neosnippet uses select-mode to jump over placeholder.
==============================================================================
CHANGELOG *neosnippet-changelog*