view runtime/doc/doctags.vim @ 19260:f2a4030c918a

Added tag v8.2.0188 for changeset 77cce043971402c03f8a1d49d580b638ceda5c8e
author Bram Moolenaar <Bram@vim.org>
date Fri, 31 Jan 2020 22:15: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!