view runtime/doc/doctags.vim @ 24668:6f26d4555812

Added tag v8.2.2872 for changeset 8feb0450b6908bc31375b90413e15445168b00fb
author Bram Moolenaar <Bram@vim.org>
date Wed, 19 May 2021 00:30:04 +0200
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!