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
I have boiled my vimrc down to include these two plugins using dein:
if dein#load_state(expand('~/.config/nvim/dein')) call dein#begin(expand('~/.config/nvim/dein')) call dein#add('Shougo/dein.vim') call dein#add('Shougo/vimproc.vim', {'build': 'make'}) call dein#add('Quramy/tsuquyomi') call dein#add('leafgarland/typescript-vim') call dein#end() call dein#save_state() endif
This seems to break Tsuquyomi and things like completion and linting do not work. If I check TsuStatusServer it comes back with dead.
TsuStatusServer
dead
Simply disabling leafgarland/typescript-vim gets things working again, and TsuStatusServer comes back with idle for typescript files.
leafgarland/typescript-vim
idle
Assuming this issue is more difficult to fix, is there any way to use this plugin only for syntax highlighting?
The text was updated successfully, but these errors were encountered:
Have you tried loading tsuquyomi after this plugin, does that make any difference?
Sorry, something went wrong.
It might be the buffer autocmds that are breaking things, and the plugin order should affect that.
FYI: ftplugin/typescript.vim conflicted between Tsuquyomi and typescript-vim. But it was fixed. So this issue may be already gone.
ftplugin/typescript.vim
No branches or pull requests
I have boiled my vimrc down to include these two plugins using dein:
This seems to break Tsuquyomi and things like completion and linting do not work. If I check
TsuStatusServer
it comes back withdead
.Simply disabling
leafgarland/typescript-vim
gets things working again, andTsuStatusServer
comes back withidle
for typescript files.Assuming this issue is more difficult to fix, is there any way to use this plugin only for syntax highlighting?
The text was updated successfully, but these errors were encountered: