瀏覽代碼

nixpkgs/neovim: exclude import from typescript references

Thomas Dy 2 年之前
父節點
當前提交
ae796553e8
共有 1 個文件被更改,包括 5 次插入0 次删除
  1. 5 0
      .config/nixpkgs/neovim/lsp.lua

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

@@ -90,6 +90,11 @@ if vim.fn.executable("node_modules/.bin/tsc") == 1 then
       ts_utils.setup_client(client)
 
       on_attach(client, bufnr)
+
+      -- override mappings for typescript
+      local opts = { silent = true, buffer = bufnr }
+      -- exclude import statements from reference search (may have false positives)
+      vim.keymap.set('n', 'gr', '<cmd>Telescope lsp_references default_text=!import\\ <CR>', opts)
     end,
   })
 end