view runtime/doc/doctags.vim @ 20368:2f593c94dd42

Added tag v8.2.0739 for changeset 4c0c86098fcc236817b2cf42ed161219d46e095d
author Bram Moolenaar <Bram@vim.org>
date Mon, 11 May 2020 22:15:05 +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!