view runtime/doc/doctags.vim @ 26710:8fd8af3764e2

Added tag v8.2.3883 for changeset 0c5daf5e5514e480a99049d77e31249fbfbd6c55
author Bram Moolenaar <Bram@vim.org>
date Fri, 24 Dec 2021 18:00:04 +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!