typescript.nvim
typescript.nvim copied to clipboard
A Lua plugin, written in TypeScript, to write TypeScript (Lua optional).
Hello. No idea what version I had before. I did a PackerSync this morning and the gd command stopped working
**TypescriptAddMissingImports** seems to not work for javascript projects that don't specify the `checkJs: true` option in it's `jsconfig.json`. This was mentioned in the [deprecated](https://github.com/jose-elias-alvarez/nvim-lsp-ts-utils) version of this plugin: > Note:...
I'm still early in my transition to the neovim ecosystem of plugins. I have typescript configured with the lspconfig settings and it seems to be working. ``` lspconfig.tsserver.setup { capabilities...
Neovim just merged support for [`workspace/didChangeWatchedFiles`](https://github.com/neovim/neovim/pull/22405). The method is not currently supported by `typescript-language-server`, and based on [this issue](https://github.com/typescript-language-server/typescript-language-server/issues/171), it seems that adding support upstream is unlikely. We could add...
VSCode has a neat feature which allows importing the specific type for the thing under the cursor via quick fix: Whilst I notice that whilst this add-on can fix all...
`TypescriptRenameFile`, works beautifully, updating all the imports. Is there a way to move a folder/group of files at once and update all the imports? If not, how do you guys...
Hi @jose-elias-alvarez, thanks for your work on `typescript.nvim` (and `nvim-lsp-ts-utils` before)! I have a feature request. I'm not using lspconfig. Instead I do `vim.lsp.start` inside a FileType autocommand myself (https://github.com/marcelbeumer/nvim-config/blob/e449f80d1e1a4e92ab4008d6ec392a9fe4345c29/lua/conf/lsp/server/tsserver.lua)....
Hello. Is it possible to check errors for whole project and not for only files which are in buffers?