File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -104,7 +104,6 @@ Suppressions are permitted only in the following cases:
104104- Backwards compatibility shims
105105- neovim API metadata incorrect, awaiting upstream fix
106106- classic class framework
107- - ` gen_vimdoc_config.lua ` help generator as it requires neovim source
108107
109108# Backwards Compatibility
110109
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ DIR_WORK="/tmp/nvim-tree-gen_vimdoc"
1919DIR_NVIM_SRC_DEF=" /tmp/src/neovim-stable"
2020
2121if [ ! -f " ${DIR_NVT} /scripts/gen_vimdoc.sh" ]; then
22- echo " Must be run from nvim-tree root"
22+ echo " Must be run from nvim-tree root" 1>&2
2323 exit 1
2424fi
2525
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ DIR_NVT="${PWD}"
2222DIR_NVIM_SRC_DEF=" /tmp/src/neovim-stable"
2323
2424if [ ! -f " ${DIR_NVT} /scripts/lintdoc.sh" ]; then
25- echo " Must be run from nvim-tree root"
25+ echo " Must be run from nvim-tree root" 1>&2
2626 exit 1
2727fi
2828
@@ -38,6 +38,8 @@ if [ ! -d "${DIR_NVIM_SRC}" ]; then
3838
3939Nvim source is required to run ${0}
4040
41+ The "make lintdoc" target will be executed, which needs to compile Nvim first.
42+
4143Please:
4244 mkdir -p ${DIR_NVIM_SRC_DEF}
4345 curl -L 'https://github.com/neovim/neovim/archive/refs/tags/stable.tar.gz' | tar zx --directory $( dirname " ${DIR_NVIM_SRC_DEF} " )
You can’t perform that action at this time.
0 commit comments