view runtime/doc/doctags.vim @ 34244:d15d40bf532b

runtime(doc): correct Vim patch for Wayland support Commit: https://github.com/vim/vim/commit/8fecb472c4a3f0f1ea364422424c56d1e0771b3e Author: Christian Brabandt <cb@256bit.org> Date: Tue Jan 30 23:37:41 2024 +0100 runtime(doc): correct Vim patch for Wayland support Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Tue, 30 Jan 2024 23:45:03 +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!