neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 11865dbe3917a538617b2b7df31bf7375e292bc8
parent 1b55f51d0d8468ca357514a868ac8e188b0c8722
Author: Lewis Russell <lewis6991@gmail.com>
Date:   Sun, 17 Sep 2023 11:13:31 +0100

fix(build): better deps for doc

Diffstat:
Msrc/nvim/CMakeLists.txt | 8+++++++-
1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/src/nvim/CMakeLists.txt b/src/nvim/CMakeLists.txt @@ -879,7 +879,13 @@ set(VIMDOC_FILES ) glob_wrapper(API_SOURCES ${PROJECT_SOURCE_DIR}/src/nvim/api/*.c) -glob_wrapper(LUA_SOURCES ${NVIM_RUNTIME_DIR}/lua/vim/*.lua) + +glob_wrapper(LUA_SOURCES + ${NVIM_RUNTIME_DIR}/lua/vim/*.lua + ${NVIM_RUNTIME_DIR}/lua/vim/filetype/*.lua + ${NVIM_RUNTIME_DIR}/lua/vim/lsp/*.lua + ${NVIM_RUNTIME_DIR}/lua/vim/treesitter/*.lua +) add_custom_command( OUTPUT ${VIMDOC_FILES}