Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(typescript-all-in-one): Remove mentions of tsserver in docs and comments #1178

Merged
merged 2 commits into from
Aug 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lua/astrocommunity/pack/typescript-all-in-one/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

This plugin pack does the following:

- Adds [tsserver pack](../typescript)
- Adds [typescript pack](../typescript)
- Adds [denols pack](../typescript-deno)
- Enables either `denols` or `tsserver` based on the project
- Enables either `denols` or `vtsls` based on the project
2 changes: 1 addition & 1 deletion lua/astrocommunity/pack/typescript-all-in-one/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ return {
end
end

-- if tsserver attached, stop it if there is a denols server attached
-- if vtsls attached, stop it if there is a denols server attached
if curr_client and curr_client.name == "vtsls" then
if next((vim.lsp.get_clients or vim.lsp.get_active_clients) { bufnr = bufnr, name = "denols" }) then
vim.lsp.stop_client(curr_client.id, true)
Expand Down
Loading