aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/rust_analyzer.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2025-04-23 06:50:22 -0700
committerGitHub <noreply@github.com>2025-04-23 06:50:22 -0700
commitaf34737b3ad94e5fcf03628db7df14cff481bf56 (patch)
tree372d18e761fd770fe282922d255ff98a20d7e88e /lsp/rust_analyzer.lua
parentdocs: update configs.md (diff)
downloadnvim-lspconfig-af34737b3ad94e5fcf03628db7df14cff481bf56.tar
nvim-lspconfig-af34737b3ad94e5fcf03628db7df14cff481bf56.tar.gz
nvim-lspconfig-af34737b3ad94e5fcf03628db7df14cff481bf56.tar.bz2
nvim-lspconfig-af34737b3ad94e5fcf03628db7df14cff481bf56.tar.lz
nvim-lspconfig-af34737b3ad94e5fcf03628db7df14cff481bf56.tar.xz
nvim-lspconfig-af34737b3ad94e5fcf03628db7df14cff481bf56.tar.zst
nvim-lspconfig-af34737b3ad94e5fcf03628db7df14cff481bf56.zip
refactor: deprecate util.validate_bufnr()
Diffstat (limited to 'lsp/rust_analyzer.lua')
-rw-r--r--lsp/rust_analyzer.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/lsp/rust_analyzer.lua b/lsp/rust_analyzer.lua
index aaa618c3..ba71bba4 100644
--- a/lsp/rust_analyzer.lua
+++ b/lsp/rust_analyzer.lua
@@ -24,7 +24,6 @@
local util = require 'lspconfig.util'
local function reload_workspace(bufnr)
- bufnr = util.validate_bufnr(bufnr)
local clients = vim.lsp.get_clients { bufnr = bufnr, name = 'rust_analyzer' }
for _, client in ipairs(clients) do
vim.notify 'Reloading Cargo Workspace'