diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2021-10-05 09:56:22 -0700 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2021-10-05 09:56:22 -0700 |
commit | dd7812ec66602688f6ea807731f2c761e43a1dab (patch) | |
tree | 1a0fb0e0a97acf0f5662c163f828f51014cc081b | |
parent | 38ef66f4c151893f583a24918546b1e171b4458a (diff) | |
download | rneovim-dd7812ec66602688f6ea807731f2c761e43a1dab.tar.gz rneovim-dd7812ec66602688f6ea807731f2c761e43a1dab.tar.bz2 rneovim-dd7812ec66602688f6ea807731f2c761e43a1dab.zip |
fix(docs): add win_config.c
-rwxr-xr-x | scripts/gen_vimdoc.py | 1 | ||||
-rw-r--r-- | src/nvim/api/vim.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/scripts/gen_vimdoc.py b/scripts/gen_vimdoc.py index 36e01153f1..f37e4c9d37 100755 --- a/scripts/gen_vimdoc.py +++ b/scripts/gen_vimdoc.py @@ -91,6 +91,7 @@ CONFIG = { 'vim.c', 'buffer.c', 'window.c', + 'win_config.c', 'tabpage.c', 'ui.c', ], diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c index 7a99ade579..9b39b18c4e 100644 --- a/src/nvim/api/vim.c +++ b/src/nvim/api/vim.c @@ -1358,7 +1358,7 @@ void nvim_set_current_tabpage(Tabpage tabpage, Error *err) } } -/// Creates a new \*namespace\*, or gets an existing one. +/// Creates a new \*namespace\* or gets an existing one. /// /// Namespaces are used for buffer highlights and virtual text, see /// |nvim_buf_add_highlight()| and |nvim_buf_set_extmark()|. |