aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/api/vim.c
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2019-08-14 23:54:08 +0200
committerGitHub <noreply@github.com>2019-08-14 23:54:08 +0200
commit7d92c391a196dc7eb36780706d6fd044a2a98313 (patch)
tree7e3c046fa5c7e5aea1b1f98ddf3de9a257db04c6 /src/nvim/api/vim.c
parent9bf3fab60b7816274ff3b7131a793b5b4f2f5f3c (diff)
parentf9f238b21a9659e81e8e84f35e9cf886a5705a3c (diff)
downloadrneovim-7d92c391a196dc7eb36780706d6fd044a2a98313.tar.gz
rneovim-7d92c391a196dc7eb36780706d6fd044a2a98313.tar.bz2
rneovim-7d92c391a196dc7eb36780706d6fd044a2a98313.zip
Merge pull request #10774 from bfredl/miminal_fdc
api: nvim_win_open() style="minimal" should disable 'foldcolumn'
Diffstat (limited to 'src/nvim/api/vim.c')
-rw-r--r--src/nvim/api/vim.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c
index ed6a28bcda..6280038d1a 100644
--- a/src/nvim/api/vim.c
+++ b/src/nvim/api/vim.c
@@ -1071,10 +1071,10 @@ fail:
/// disabled. This is useful when displaing a temporary
/// float where the text should not be edited. Disables
/// 'number', 'relativenumber', 'cursorline', 'cursorcolumn',
-/// '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'.
+/// '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'.
///
/// top-level window. Currently accepts no other positioning
/// configuration together with this.