view runtime/doc/doctags.vim @ 34390:d76c09e018a1

Added tag v9.1.0121 for changeset 8b0e390b61fe8c7f2f6740b25f552b0a4769da3c
author Christian Brabandt <cb@256bit.org>
date Wed, 21 Feb 2024 19:45:08 +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!