diff options
author | glepnir <glephunter@gmail.com> | 2025-03-31 21:39:50 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-31 06:39:50 -0700 |
commit | 216cc893bf1b3aa755e1e26243d1f438d5ebb0ca (patch) | |
tree | da162891a5df52e6f84adc0b928b09ff912ec549 /runtime | |
parent | 57b4fb5c5318394b82508492232d6e926ef8f23f (diff) | |
download | rneovim-216cc893bf1b3aa755e1e26243d1f438d5ebb0ca.tar.gz rneovim-216cc893bf1b3aa755e1e26243d1f438d5ebb0ca.tar.bz2 rneovim-216cc893bf1b3aa755e1e26243d1f438d5ebb0ca.zip |
feat(float): 'winborder' "bold" style #33189
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/news.txt | 2 | ||||
-rw-r--r-- | runtime/doc/options.txt | 1 | ||||
-rw-r--r-- | runtime/lua/vim/_meta/options.lua | 3 |
3 files changed, 5 insertions, 1 deletions
diff --git a/runtime/doc/news.txt b/runtime/doc/news.txt index c8fa343e46..eee39f81f5 100644 --- a/runtime/doc/news.txt +++ b/runtime/doc/news.txt @@ -136,6 +136,8 @@ OPTIONS |ins-completion| modes. • 'autowriteall' write all buffers upon receiving `SIGHUP`, `SIGQUIT` or `SIGTSTP`. +• 'winborder' add bold style. + PERFORMANCE • todo diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index bdc4f20fac..25909e09b9 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -7208,6 +7208,7 @@ A jump table for the options with a short description can be found at |Q_op|. - "rounded": Like "single", but with rounded corners ("╭" etc.). - "solid": Adds padding by a single whitespace cell. - "shadow": A drop shadow effect by blending with the background. + - "bold": A bold line box. *'window'* *'wi'* 'window' 'wi' number (default screen height - 1) diff --git a/runtime/lua/vim/_meta/options.lua b/runtime/lua/vim/_meta/options.lua index 9ff4770e7c..8a582ada23 100644 --- a/runtime/lua/vim/_meta/options.lua +++ b/runtime/lua/vim/_meta/options.lua @@ -7893,8 +7893,9 @@ vim.wo.winbl = vim.wo.winblend --- - "rounded": Like "single", but with rounded corners ("╭" etc.). --- - "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'|'none' +--- @type ''|'double'|'single'|'shadow'|'rounded'|'solid'|'bold'|'none' vim.o.winborder = "" vim.go.winborder = vim.o.winborder |