diff options
author | Sean Dewar <seandewar@users.noreply.github.com> | 2023-07-26 21:27:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-26 21:27:35 +0100 |
commit | 8fe9f41f7f9da2009d11855ec0548b9dbe548a69 (patch) | |
tree | 8759d99d2b3f034449a0ac73dd0d77736d1c2aec /runtime | |
parent | ccf328172bac2b02f9bd19fa58e105958514a28a (diff) | |
parent | a47be0b2d90b26905866faf5b7cc82d9c17be9bb (diff) | |
download | rneovim-8fe9f41f7f9da2009d11855ec0548b9dbe548a69.tar.gz rneovim-8fe9f41f7f9da2009d11855ec0548b9dbe548a69.tar.bz2 rneovim-8fe9f41f7f9da2009d11855ec0548b9dbe548a69.zip |
Merge pull request #24457 from seandewar/relax-cmdwin
feat(api): relax cmdwin restrictions for a few functions
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/api.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/api.txt b/runtime/doc/api.txt index 5b6a901970..417137c166 100644 --- a/runtime/doc/api.txt +++ b/runtime/doc/api.txt @@ -2897,7 +2897,7 @@ nvim_win_hide({window}) *nvim_win_hide()* or |nvim_win_close()|, which will close the buffer. Attributes: ~ - not allowed when |textlock| is active or in the |cmdwin| + not allowed when |textlock| is active Parameters: ~ • {window} Window handle, or 0 for current window @@ -2915,7 +2915,7 @@ nvim_win_set_buf({window}, {buffer}) *nvim_win_set_buf()* Sets the current buffer in a window, without side effects Attributes: ~ - not allowed when |textlock| is active or in the |cmdwin| + not allowed when |textlock| is active Parameters: ~ • {window} Window handle, or 0 for current window @@ -3036,7 +3036,7 @@ nvim_open_win({buffer}, {enter}, {*config}) *nvim_open_win()* < Attributes: ~ - not allowed when |textlock| is active or in the |cmdwin| + not allowed when |textlock| is active Parameters: ~ • {buffer} Buffer to display, or 0 for current buffer |