Skip to content

Commit

Permalink
fix: outdated references to 'lspconfig.ui.windows' neovim#3454
Browse files Browse the repository at this point in the history
Problem:
Some configs still reference 'lspconfig.ui.windows', which was removed
in e6569c1.

Solution:
Remove the references.
  • Loading branch information
justinmk authored Nov 25, 2024
1 parent dafd61d commit 2700851
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lua/lspconfig/configs/clangd.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion lua/lspconfig/configs/texlab.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 2700851

Please sign in to comment.