aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2024-11-25 05:48:01 -0800
committerGitHub <noreply@github.com>2024-11-25 05:48:01 -0800
commit27008519562f16453813c19dcc6ee97f505e0b1c (patch)
treeedd07997186f3b45f027671e0235895e2dde9e59 /lua
parentMerge #3450 from MariaSolOs/start (diff)
downloadnvim-lspconfig-27008519562f16453813c19dcc6ee97f505e0b1c.tar
nvim-lspconfig-27008519562f16453813c19dcc6ee97f505e0b1c.tar.gz
nvim-lspconfig-27008519562f16453813c19dcc6ee97f505e0b1c.tar.bz2
nvim-lspconfig-27008519562f16453813c19dcc6ee97f505e0b1c.tar.lz
nvim-lspconfig-27008519562f16453813c19dcc6ee97f505e0b1c.tar.xz
nvim-lspconfig-27008519562f16453813c19dcc6ee97f505e0b1c.tar.zst
nvim-lspconfig-27008519562f16453813c19dcc6ee97f505e0b1c.zip
fix: outdated references to 'lspconfig.ui.windows' #3454
Problem: Some configs still reference 'lspconfig.ui.windows', which was removed in e6569c18c21be5166e4b9cc7530e828b8285c84e. Solution: Remove the references.
Diffstat (limited to 'lua')
-rw-r--r--lua/lspconfig/configs/clangd.lua2
-rw-r--r--lua/lspconfig/configs/texlab.lua2
2 files changed, 2 insertions, 2 deletions
diff --git a/lua/lspconfig/configs/clangd.lua b/lua/lspconfig/configs/clangd.lua
index 4972be5b..cb6c5e3f 100644
--- a/lua/lspconfig/configs/clangd.lua
+++ b/lua/lspconfig/configs/clangd.lua
@@ -41,7 +41,7 @@ local function symbol_info()
width = math.max(string.len(name), string.len(container)),
focusable = false,
focus = false,
- border = require('lspconfig.ui.windows').default_options.border or 'single',
+ border = 'single',
title = 'Symbol Info',
})
end, bufnr)
diff --git a/lua/lspconfig/configs/texlab.lua b/lua/lspconfig/configs/texlab.lua
index 919199bd..26a25575 100644
--- a/lua/lspconfig/configs/texlab.lua
+++ b/lua/lspconfig/configs/texlab.lua
@@ -117,7 +117,7 @@ local function buf_find_envs(client, bufnr)
width = math.max((max_length + #env_names - 1), (string.len 'Environments')),
focusable = false,
focus = false,
- border = require('lspconfig.ui.windows').default_options.border or 'single',
+ border = 'single',
title = 'Environments',
})
end, bufnr)