typescript-tools.nvim icon indicating copy to clipboard operation
typescript-tools.nvim copied to clipboard

⚡ TypeScript integration NeoVim deserves ⚡

Results 99 typescript-tools.nvim issues
Sort by recently updated
recently updated
newest added

When I run `:LspStop` or `:LspRestart`, I am getting this error: ``` [ERROR][2024-03-26 11:10:18] ...m/lsp/client.lua:979 "LSP[typescript-tools]" "on_error" { code = "ON_EXIT_CALLBACK_ERROR", err = "...r/neovim/HEAD-3f3c729/share/nvim/runtime/lua/vim/lsp.lua:355: attempt to index local 'client' (a...

Fix: https://github.com/pmizio/typescript-tools.nvim/issues/266 This PR will fix not to use the following deprecated api. - `vim.tbl_add_reverse_lookup()` - `vim.tbl_islist()` - `vim.lsp.get_active_clients()` 📝 https://neovim.io/doc/user/deprecated.html#deprecated-0.10

The following deprecation notice about ``vim.tbl_add_reverse_lookup` is shown when loading this plugin: ``` vim.tbl_add_reverse_lookup is deprecated. :help deprecated Feature will be removed in Nvim 0.12 stack traceback: vim/shared.lua: in function...

I have a `Nx` repository, with basically `apps/*` and `libs/*`. When I `FindReferences` it only shows references if I have previously visited the `app` or `library` that reference the expression....

I use this autocmd which works really well. However when I restart the tsserver and then save the file the autocmd breaks. This is the autocmd: ```lua -- Remove unused...

Hi! Is it possible to make it possible to remove "Move to a new file" from code actions as it is with "Add missing imports" etc? Make it possible to...

TODO: - [ ] config option to pass other telescope builtin pickers (default `find_files`) - [ ] config option to pass custom function as file picker(allow to use other things...

Hi there, I have been trying to setup this plugin, and it works well after loading the project, but it takes extremely long to load. Sometimes is even timing out....

to avoid confilcts with deno. I try to set the root dir to "package.json" to apply this method ``` nvim_lsp.tsserver.setup { on_attach = on_attach, root_dir = nvim_lsp.util.root_pattern("package.json"), single_file_support = false...