view src/po/tojavascript.vim @ 22273:51375bedaefe

Added tag v8.2.1685 for changeset eb1f5f618c750edf6b0f35eb91e00ae74d4a0321
author Bram Moolenaar <Bram@vim.org>
date Mon, 14 Sep 2020 21:45:05 +0200
parents 52e970719f4b
children 7296f4ef3ead
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
  g/^\s*"/s/.*//

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

quit