We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mini vimrc
set rtp+=~/.cache/vimfiles/repos/github.com/Shougo/neosnippet.vim set rtp+=~/.cache/vimfiles/repos/github.com/Shougo/neosnippet-snippets set rtp+=~/.cache/vimfiles/repos/github.com/Shougo/deoplete.nvim set rtp+=~/.cache/vimfiles/repos/github.com/tweekmonster/deoplete-clang2 let g:deoplete#enable_at_startup = get(g:, 'deoplete#enable_at_startup', 1) imap <expr><Tab> \ neosnippet#expandable_or_jumpable() ? \ "\<Plug>(neosnippet_expand_or_jump)" : "\<Tab>"
reproduce step:
main<tab>
you will see
main<Plug>(neosnippet_expand_or_jump)
but I think it should be
int main(int argc, char const* argv[]) { return 0; }
ref : wsdjeg/SpaceVim#356
The text was updated successfully, but these errors were encountered:
tab
deoplete-clang2 overwrites <Tab> mapping. It seems the mapping conflict.
<Tab>
Sorry, something went wrong.
tweekmonster
No branches or pull requests
mini vimrc
reproduce step:
main<tab>
you will see
but I think it should be
ref : wsdjeg/SpaceVim#356
The text was updated successfully, but these errors were encountered: