aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim/_meta/options.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2025-04-05 06:01:40 -0700
committerGitHub <noreply@github.com>2025-04-05 06:01:40 -0700
commit57d99a515f57454370b6c122545ea53685d22d1b (patch)
tree5e64895a115ed130904d04ecdafb030f14f5e19b /runtime/lua/vim/_meta/options.lua
parente8785c2e94508eeabf6ff63e1fe1bcaecceef946 (diff)
downloadrneovim-57d99a515f57454370b6c122545ea53685d22d1b.tar.gz
rneovim-57d99a515f57454370b6c122545ea53685d22d1b.tar.bz2
rneovim-57d99a515f57454370b6c122545ea53685d22d1b.zip
docs: clipboard, eval #33223
Diffstat (limited to 'runtime/lua/vim/_meta/options.lua')
-rw-r--r--runtime/lua/vim/_meta/options.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/lua/vim/_meta/options.lua b/runtime/lua/vim/_meta/options.lua
index c032edf43c..b681321d75 100644
--- a/runtime/lua/vim/_meta/options.lua
+++ b/runtime/lua/vim/_meta/options.lua
@@ -7889,13 +7889,13 @@ vim.wo.winbl = vim.wo.winblend
--- Defines the default border style of floating windows. The default value
--- is empty, which is equivalent to "none". Valid values include:
+--- - "bold": Bold line box.
+--- - "double": Double-line box.
--- - "none": No border.
---- - "single": A single line box.
---- - "double": A double line box.
--- - "rounded": Like "single", but with rounded corners ("╭" etc.).
+--- - "shadow": Drop shadow effect, by blending with the background.
+--- - "single": Single-line box.
--- - "solid": Adds padding by a single whitespace cell.
---- - "shadow": A drop shadow effect by blending with the background.
---- - "bold": A bold line box.
---
--- @type ''|'double'|'single'|'shadow'|'rounded'|'solid'|'bold'|'none'
vim.o.winborder = ""