diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-04-10 14:29:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-10 14:29:23 +0200 |
commit | 436e0147f415d1a778994d0685cd1dd30b8c925f (patch) | |
tree | 420a815b355d92da41621714d537cec82e06e1b0 /runtime/doc/api.txt | |
parent | 7801ffc38aedbbd527e614b6ba5ad60ecf380470 (diff) | |
parent | da979ae04b7a8c56586ed0233957600ad6af99f0 (diff) | |
download | rneovim-436e0147f415d1a778994d0685cd1dd30b8c925f.tar.gz rneovim-436e0147f415d1a778994d0685cd1dd30b8c925f.tar.bz2 rneovim-436e0147f415d1a778994d0685cd1dd30b8c925f.zip |
Merge pull request #22865 from MunifTanjim/issue-20370
fix(api): do not re-apply win_config.style when missing
Diffstat (limited to 'runtime/doc/api.txt')
-rw-r--r-- | runtime/doc/api.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/api.txt b/runtime/doc/api.txt index 09d260e0cd..d63563cc05 100644 --- a/runtime/doc/api.txt +++ b/runtime/doc/api.txt @@ -3068,8 +3068,8 @@ nvim_open_win({buffer}, {enter}, {*config}) *nvim_open_win()* In general, values below 100 are recommended, unless there is a good reason to overshadow builtin elements. - • style: Configure the appearance of the window. Currently - only takes one non-empty value: + • style: (optional) Configure the appearance of the window. + Currently only supports one value: • "minimal" Nvim will display the window with many UI options disabled. This is useful when displaying a temporary float where the text should not be edited. |