diff options
author | Munif Tanjim <hello@muniftanjim.dev> | 2023-04-02 23:01:10 +0600 |
---|---|---|
committer | Munif Tanjim <hello@muniftanjim.dev> | 2023-04-10 16:26:42 +0600 |
commit | da979ae04b7a8c56586ed0233957600ad6af99f0 (patch) | |
tree | cbd4e93374b0161198028d9dd97310e52bcd537b /runtime/doc/api.txt | |
parent | 53f36806f1b5107c0570ffbf57180a8e08f45b2e (diff) | |
download | rneovim-da979ae04b7a8c56586ed0233957600ad6af99f0.tar.gz rneovim-da979ae04b7a8c56586ed0233957600ad6af99f0.tar.bz2 rneovim-da979ae04b7a8c56586ed0233957600ad6af99f0.zip |
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 3c3e66dd57..1adf0a305f 100644 --- a/runtime/doc/api.txt +++ b/runtime/doc/api.txt @@ -3066,8 +3066,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. |