Browse Source

nixpkgs/neovim: notify the typescript version used in LSP

Thomas Dy 1 year ago
parent
commit
78f9bb082e
1 changed files with 5 additions and 0 deletions
  1. 5 0
      .config/nixpkgs/neovim/lsp.lua

+ 5 - 0
.config/nixpkgs/neovim/lsp.lua

@@ -54,6 +54,11 @@ else
         completionDisableFilterText = true,
       },
       capabilities = capabilities,
+      handlers = {
+        ['$/typescriptVersion'] = function(err, result, ctx, config)
+          vim.notify(string.format('Typescript %s', result.version))
+        end
+      },
       flags = {
         debounce_text_changes = 150,
       },