vimwiki

Personal wiki for vim
git clone https://github.com/vimwiki/vimwiki.git
Log | Files | Refs | README | LICENSE

commit e83173c7c8eef8765c8e3dad04f6653b0834048f
parent 972594829e6b443f1ca7acbe78ee843ca7f86c46
Author: Tinmarino <tinmarino@gmail.com>
Date:   Wed, 20 May 2020 14:41:07 -0400

Test remove commented nvim from Dockerfile

Diffstat:
MDockerfile | 1-
Mtest/run_tests.sh | 4++++
2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile @@ -21,4 +21,3 @@ RUN install_vim -tag v7.3.429 -name vim_7.3.429 -build \ -tag v7.4.1546 -name vim_7.4.1546 -build \ -tag v8.0.0027 -name vim_8.0.0027 -build \ -tag v8.1.0519 -name vim_8.1.0519 -build \ - # -tag neovim:v0.3.8 -name nvim_0.3.8 -build \ diff --git a/test/run_tests.sh b/test/run_tests.sh @@ -223,16 +223,20 @@ o_error=0 case $type in "vader" ) runVader + echo "Vader: returned $?" o_error=$(( $? | $o_error )) ;; "vint" ) runVint + echo "Vint: returned $?" o_error=$(( $? | $o_error )) ;; "all" ) runVint + echo "Vint: returned $?" o_error=$(( $? | $o_error )) runVader + echo "Vader: returned $?" o_error=$(( $? | $o_error )) ;; * )