view src/po/tojavascript.vim @ 34417:4720d1235967

Added tag v9.1.0131 for changeset 0a458b49e1e60341985ecad8c97a7ab0f28d85b4
author Christian Brabandt <cb@256bit.org>
date Sat, 24 Feb 2024 14:30:04 +0100
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