summaryrefslogtreecommitdiffstats
path: root/runtime/doc/doctags.vim
blob: 833dbefa62868f1b4e0cbd3d222963df1907b3f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
" 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!