yioneko

Results 35 comments of yioneko

It looks like volar monkey patched the vscode typescript extension to make it work for vue files: https://github.com/vuejs/language-tools/blob/ef908e2c4b0fadf17c50297bff56da2eecc2f25b/extensions/vscode/src/nodeClientMain.ts#L144-L150 So this is technically not a issue for vtsls. But I also...

@mcchrish Could you test the version `0.2.2-alpha.1`? An option `vtsls.tsserver.globalPlugins` is introduced for the vue plugin support: https://github.com/yioneko/vtsls/blob/6cdfdaccf7550beb89b7ea6b6ab163dc2dad4a40/README.md?plain=1#L136-L152

@mcchrish Did you see the `Move to file` action in the `fzf-lua` popup? I think your error is triggered by that, as I reproduced this error in VSCode with official...

Just FYI: The Vue language support seems to be suffering problems right now, as you can look into its issues and https://github.com/vuejs/language-tools/pull/4119. So I would not merge the feature until...

@mcchrish Try to use `before_init`: ```lua lspconfig.vtsls.setup { filetypes = { "typescript", "javascript", "javascriptreact", "typescriptreact", "vue" }, capabilities = capabilities, settings = { vtsls = { tsserver = { globalPlugins...