aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorDennis B <bluz71@users.noreply.github.com>2019-11-22 20:55:04 +1100
committerBjörn Linse <bjorn.linse@gmail.com>2019-11-22 10:55:04 +0100
commitd5f14b8372b3c8d441187eea659156534cb4c9ba (patch)
treea7094508258e1adc454f0045fd65ed14665bad7b /runtime
parentcc5487e32f6fc6d0034634a1f9e736968afb4450 (diff)
downloadrneovim-d5f14b8372b3c8d441187eea659156534cb4c9ba.tar.gz
rneovim-d5f14b8372b3c8d441187eea659156534cb4c9ba.tar.bz2
rneovim-d5f14b8372b3c8d441187eea659156534cb4c9ba.zip
Clear 'cc' in nvim_open_win 'minimal' style #11361 (#11427)
* Clear 'cc' in nvim_open_win 'minimal' style #11361 Add 'colorcolumn' to the list of options that should be cleared when creating a 'minimal'-style floating window.
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/api.txt9
1 files changed, 5 insertions, 4 deletions
diff --git a/runtime/doc/api.txt b/runtime/doc/api.txt
index 57a72e6173..f97795b0ee 100644
--- a/runtime/doc/api.txt
+++ b/runtime/doc/api.txt
@@ -933,10 +933,11 @@ nvim_open_win({buffer}, {enter}, {config}) *nvim_open_win()*
'number', 'relativenumber', 'cursorline',
'cursorcolumn', 'foldcolumn', 'spell' and
'list' options. 'signcolumn' is changed to
- `auto` . The end-of-buffer region is hidden
- by setting `eob` flag of 'fillchars' to a
- space char, and clearing the |EndOfBuffer|
- region in 'winhighlight'.
+ `auto` and 'colorcolumn' is cleared. The
+ end-of-buffer region is hidden by setting
+ `eob` flag of 'fillchars' to a space char, and
+ clearing the |EndOfBuffer| region in
+ 'winhighlight'.
Return: ~
Window handle, or 0 on error