Allow specifying max width for floating windows (#1336)

This commit is contained in:
yuilib
2022-12-21 02:32:37 +09:00
committed by GitHub
parent 52240c3cd7
commit 9a00d5aba4
5 changed files with 37 additions and 3 deletions

View File

@@ -58,6 +58,7 @@ let g:lsp_preview_fixup_conceal = get(g:, 'lsp_preview_fixup_conceal', 0)
let g:lsp_peek_alignment = get(g:, 'lsp_peek_alignment', 'center')
let g:lsp_preview_max_width = get(g:, 'lsp_preview_max_width', -1)
let g:lsp_preview_max_height = get(g:, 'lsp_preview_max_height', -1)
let g:lsp_float_max_width = get(g:, 'lsp_float_max_width', -1)
let g:lsp_signature_help_enabled = get(g:, 'lsp_signature_help_enabled', 1)
let g:lsp_signature_help_delay = get(g:, 'lsp_signature_help_delay', 200)
let g:lsp_show_workspace_edits = get(g:, 'lsp_show_workspace_edits', 0)