typescript.nvim
typescript.nvim copied to clipboard
A Lua plugin, written in TypeScript, to write TypeScript (Lua optional).
Ref: https://devblogs.microsoft.com/typescript/announcing-typescript-4-7/?q=1#go-to-source-definition Unsure if this plugin can expose above functionality, or if it is just unavailable to us because we're relying on an LSP server and VS Code isn't.
Closes #29. This seems to be working for simple project structures but needs more testing. I'd at least want to wait until 0.8 is released to merge this, at which...
I originally wanted this plugin to be independent but quickly found that replacing nvim-lspconfig meant reinventing the wheel (which was particularly painful when going through TypeScript). `vim.lsp.start` makes this a...
I am no longer using Neovim as my primary editor, so I am archiving the typescript.nvim repository on on **August 11, 2023** (about one month from today). Any user or...
Hey @jose-elias-alvarez, thanks for a great plugin for Neovim! I noticed when I use this, it does not launch the `tsserver` ``` require("typescript").setup({ debug = false, -- enable debug logging...
Hello, thanks for this nice project! I think the types are useful for everyone writing nvim plugins with typescript and it would be great if you can split them so...
I am not sure if this is the scope of this plugin but VSCode recently added "move to existing file" refactor for variables functions etc. with changing the imports accordingly....
Allow users to supply the `fallback` function instead of assuming that they want to call the vanilla implementation. For example, this would allow us to call telescope's implementation of go-to...