Tony wrote:
> > > After the latest runtime files update, this problem has disappeared;
> > > but helptags generation ("/usr/local/bin/vim -eX -u doctags.vim")
> > > still outputs a large number of empty lines, which is annoying. Would
> > > it please be possible to filter them out (maybe 2>&1 | egrep -v ^\s*$
> > > or something)?
> >
> > Where do you see empty lines? I get no output at all:
> >
> > $ cd vim/vim81/runtime/doc
> > $ vim -eX -u doctags.vim
> > $
>
> Here is the relevant part of the output of "make installruntime",
> including one line after the many empties:
>
> generating help tags
> make[1]: Entering directory '/root/.build/vim/vim-hg/runtime/doc'
> /usr/local/bin/vim -eX -u doctags.vim
[empty lines]
> make[1]: Leaving directory '/root/.build/vim/vim-hg/runtime/doc'
I don't see that. Can you try changing the line in
runtime/doc/Makefile:
vimtags: $(DOCS)
@if test -x $(VIMEXE); then $(VIMEXE) -eX -u doctags.vim; \
else echo "vim executable $(VIMEXE) not found"; fi
to:
vimtags: $(DOCS)
@if test -x $(VIMEXE); then $(VIMEXE) --clean -eX -u doctags.vim; \
else echo "vim executable $(VIMEXE) not found"; fi
Does it go away then?
--
Far out in the uncharted backwaters of the unfashionable end of the
Western Spiral arm of the Galaxy lies a small unregarded yellow sun.
Orbiting this at a distance of roughly ninety-eight million miles is an
utterly insignificant little blue-green planet whose ape-descended life
forms are so amazingly primitive that they still think digital watches
are a pretty neat idea ...
-- Douglas Adams, "The Hitchhiker's Guide to the Galaxy"
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/201911022101.xA2L18eX010944%40masaka.moolenaar.net.