Launch.nvim icon indicating copy to clipboard operation
Launch.nvim copied to clipboard

typescript-tools plugin is used in lspconfig but plugin is missing

Open salimp2009 opened this issue 1 year ago • 0 comments

Hi There is a line in lspconfig that refers to "typescript-tools" but the plugin is not installed.

...
function M.config()
  local wk = require "which-key"
  wk.register {
    ["<leader>la"] = { "<cmd>lua vim.lsp.buf.code_action()<cr>", "Code Action" },
    ["<leader>lf"] = {
      "<cmd>lua vim.lsp.buf.format({async = true, filter = function(client) return client.name ~= 'typescript-tools' end})<cr>",
      "Format",
    },
    .... 

in https://github.com/LunarVim/Launch.nvim/blob/0235c4b5f2d44c2e2fe025dc996dd79c68c73c84/lua/user/lspconfig.lua#L46

Either this should be revised or better to add the plugin spec to core plugins

Salim

salimp2009 avatar Feb 01 '24 13:02 salimp2009