From 042bad50f4b4dbeab3f2131a516ac23a77b599cb Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 11 Jun 2018 10:37:37 +1200 Subject: Apply t_cm hack to Makefile Vim invocation This prevents it from trying to move output to the bottom of the screen during the make(1) run. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6c9d0fab..9b189f69 100644 --- a/Makefile +++ b/Makefile @@ -533,7 +533,8 @@ install-vim-bundle: install-vim-config find vim/bundle/*/*/* \ -type f -exec sh -c \ 'cp -p -- "$$1" $(VIMDIR)/"$${1#vim/bundle/*/}"' _ {} \; - vim -eT dumb -c 'helptags $(VIMDIR)/doc' -c quit + cmd=$$(printf 'set t_cm=\r|') ; \ + vim -eT dumb --cmd "$${cmd%|}" -c 'helptags $(VIMDIR)/doc' -c quit install-vim-compiler: mkdir -p -- $(VIMDIR)/compiler -- cgit v1.2.3