view runtime/doc/doctags.vim @ 33436:3f96c75df76d

runtime(doc): add missing error numbers in the help. (#13241) Commit: https://github.com/vim/vim/commit/cd39b69b0200005622db7291bbacff95bd03a3d0 Author: Yegappan Lakshmanan <4298407+yegappan@users.noreply.github.com> Date: Mon Oct 2 12:50:45 2023 -0700 runtime(doc): add missing error numbers in the help. (https://github.com/vim/vim/issues/13241) closes: https://github.com/vim/vim/issues/13240 Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Mon, 02 Oct 2023 22:00:06 +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!