diff options
| author | Raphael <glephunter@gmail.com> | 2022-11-21 18:06:14 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-21 11:06:14 +0100 |
| commit | 2bb244af314e80afbab30b4db4490c8dae894b85 (patch) | |
| tree | da1621b03df8efb1651a1f459268b008d5824416 /runtime/doc | |
| parent | 126ef65e5b3ff0da68bfe166be0bb0a33664142b (diff) | |
| download | rneovim-2bb244af314e80afbab30b4db4490c8dae894b85.tar.gz rneovim-2bb244af314e80afbab30b4db4490c8dae894b85.tar.bz2 rneovim-2bb244af314e80afbab30b4db4490c8dae894b85.zip | |
feat(lsp): support set title in lsp relate floatwindow (#21110)
Diffstat (limited to 'runtime/doc')
| -rw-r--r-- | runtime/doc/lsp.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/doc/lsp.txt b/runtime/doc/lsp.txt index 036b0bbc6f..0255d78c4c 100644 --- a/runtime/doc/lsp.txt +++ b/runtime/doc/lsp.txt @@ -1330,7 +1330,9 @@ hover({_}, {result}, {ctx}, {config}) *vim.lsp.handlers.hover()* vim.lsp.handlers["textDocument/hover"] = vim.lsp.with( vim.lsp.handlers.hover, { -- Use a sharp border with `FloatBorder` highlights - border = "single" + border = "single", + -- add the title in hover float window + title = "hover" } ) < |