Anantha Kumaran

Results 154 comments of Anantha Kumaran

The command we are using is [CompletionsRequestArgs](https://github.com/microsoft/TypeScript/blob/7726464abd8ce58a13c9fdefefffd96d65fb82a1/lib/protocol.d.ts#L1443). I think what's deprecated is probably details request (which we issue for single completion option to get even more info). As I mentioned,...

I myself don't use tramp and don't have time now to debug the issue. tide uses `start-file-process` and `default-directory` is set to the return value of `(tide-project-root)`. It looks like...

I am not sure when the vue-mode-hook gets executed. You could try to use ``` (setq mmm-typescript-mode-submode-hook #'setup-vue-with-ts) ``` There seem to be a lot of issues though, as tsserver...

A minimal project which reproduces this issue would help us with identifying the problem. With the current description, there aren't any clues as to where the issue might be.

Could you enable [debug](https://github.com/ananthakumaran/tide#debugging) logs and check if anything shows up there. ``` "include": [ "src/**/*", "node_modules/**/*" ] ``` https://www.typescriptlang.org/docs/handbook/tsconfig-json.html#tsconfig-bases it's typically recommended to exclude node modules folder, not include...

browsing through the typescript repo, I could see a lot of similar issues, which you seem to be aware of as well. if you are hitting one of those, debugging...

I would be happy to accept a PR, as long as it keeps the current async behavior.

I had looked into this issue a bit more since my initial comment. The interface expected by `completion-at-point-functions` doesn't support async, `async` here means the UI won't block the user...

I don't use it myself. I would be happy to accept a PR though

yes, tide needs a buffer backed by real file. There is some support for indirect buffer like org-mode, where we send the full contents to tsserver instead of just the...