diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2025-03-19 15:28:24 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-19 07:28:24 +0000 |
| commit | 63bbb7c109a5db1520148168c40e0e5ce512a41f (patch) | |
| tree | 4e0536171f0900fae6a23a4f700cd4910f322d54 /src/nvim/options.lua | |
| parent | 190d0241e2a0cd4ec4bcb520772db835df935530 (diff) | |
| download | rneovim-63bbb7c109a5db1520148168c40e0e5ce512a41f.tar.gz rneovim-63bbb7c109a5db1520148168c40e0e5ce512a41f.tar.bz2 rneovim-63bbb7c109a5db1520148168c40e0e5ce512a41f.zip | |
fix(api): fix 'winborder' preventing splits with nvim_open_win (#32981)
While at it, rename the p_winbd variable to p_winborder, as 'winbd' is
not the option's short name.
Co-authored-by: glepnir <glephunter@gmail.com>
Diffstat (limited to 'src/nvim/options.lua')
| -rw-r--r-- | src/nvim/options.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 6c71477ba0..bb63ff638b 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -10205,7 +10205,7 @@ local options = { scope = { 'global' }, short_desc = N_('border of floating window'), type = 'string', - varname = 'p_winbd', + varname = 'p_winborder', }, { abbreviation = 'wi', |