view runtime/doc/doctags.vim @ 34895:a30e6625aa83

runtime(doc): mention :argded for :argedit Commit: https://github.com/vim/vim/commit/83424105cb4219fe4280aa86df5173096186bba2 Author: Christian Brabandt <cb@256bit.org> Date: Fri Apr 12 10:17:57 2024 +0200 runtime(doc): mention :argded for :argedit related: https://github.com/vim/vim/issues/14464 Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Fri, 12 Apr 2024 10:30: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!