We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b2a244 commit cc8676bCopy full SHA for cc8676b
.gitignore
@@ -3,3 +3,4 @@
3
/_gh_pages/
4
/target/
5
/vim/
6
+/vim_faq/
Makefile
@@ -6,7 +6,9 @@ html:
rm -rf target/html
7
mkdir -p target/html/doc
8
if [ ! -d vim/runtime/doc ]; then git clone --depth=1 https://github.com/vim/vim.git; fi
9
+ if [ ! -d vim_faq/doc ]; then git clone --depth=1 https://github.com/chrisbra/vim_faq.git; fi
10
cp vim/runtime/doc/*.txt target/html/doc
11
+ cp vim_faq/doc/*.txt target/html/doc
12
cp tools/buildhtml.vim tools/makehtml.vim target/html
13
-cd target/html/doc ; vim -eu ../buildhtml.vim -c "qall!"
14
0 commit comments