1234567891011121314151617181920212223 |
- #!/usr/bin/env -S nvim -l
- print('Running lintdoc ...')
- vim.cmd [[ packadd netrw ]]
- vim.cmd [[ helptags ALL ]]
- require('src.gen.gen_help_html').run_validate()
- require('src.gen.gen_help_html').test_gen()
- print('lintdoc PASSED.')
|