view src/po/tojavascript.vim @ 33003:a7eeea10ef21

Added tag v9.0.1793 for changeset b4efdb3357f7f24b68e584ef9170a09cdd882e2c
author Christian Brabandt <cb@256bit.org>
date Sun, 27 Aug 2023 18:30:06 +0200
parents 695b50472e85
children 04563887d70e
line wrap: on
line source

" Invoked with the name "vim.pot" and a list of Vim script names.
" Converts them to a .js file, stripping comments, so that xgettext works.
" Javascript is used because, like Vim, it accepts both single and double
" quoted strings.

set shortmess+=A

for name in argv()[1:]
  exe 'edit ' .. fnameescape(name)

  " Strip comments, also after :set commands.
  g/^\s*"/s/.*//
  g/^\s*set .*"/s/.*//

  " Write as .js file, xgettext recognizes them
  exe 'w! ' .. fnamemodify(name, ":t:r") .. ".js"
endfor

quit