view runtime/doc/doctags.vim @ 33712:e09acb1daea7

runtime(doc): Add Makefile for the Vim documentation on Windows (#13467) Commit: https://github.com/vim/vim/commit/b23c1fc596501a8dfc0355ed8084dcbf018f7907 Author: Restorer <69863286+RestorerZ@users.noreply.github.com> Date: Sat Nov 4 08:57:09 2023 +0000 runtime(doc): Add Makefile for the Vim documentation on Windows (https://github.com/vim/vim/issues/13467) * Makefile for the Vim documentation on Windows * Corrected comments Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Sat, 04 Nov 2023 10:00:06 +0100
parents 27ff44268da5
children
line wrap: on
line source

" This script makes a tags file for help text.
"
" Usage: vim -eX -u doctags.vim

try
  helptags ++t .
  echo 'help tags updated'
catch
  echo v:exception
  echo 'help tags failed update'
endtry
echo ''
qa!