diff options
author | ZyX <kp-pav@yandex.ru> | 2015-08-19 22:23:10 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2015-08-19 22:23:47 +0300 |
commit | 60e62824b86e284dec477568e6523d78861787ae (patch) | |
tree | abdad8a6a2028cb12c7c927eac9070f9bcf39a0c | |
parent | 8653000782bc9ab06d865ca96c89ec586ede6411 (diff) | |
download | rneovim-60e62824b86e284dec477568e6523d78861787ae.tar.gz rneovim-60e62824b86e284dec477568e6523d78861787ae.tar.bz2 rneovim-60e62824b86e284dec477568e6523d78861787ae.zip |
runtime: When generating helptags run NeoVim in headless mode
I see that problem fixed by #2801 was resurrected by making help tags file
generated in a more direct way. This fixes the hang without using the empty
file.
-rw-r--r-- | runtime/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/CMakeLists.txt b/runtime/CMakeLists.txt index 3e90690c37..4e39fcfbe5 100644 --- a/runtime/CMakeLists.txt +++ b/runtime/CMakeLists.txt @@ -39,6 +39,7 @@ add_custom_command(OUTPUT ${GENERATED_HELP_TAGS} -u NONE -i NONE -esX + --headless -c "helptags ++t ." -c quit DEPENDS |