view src/po/fixfilenames.vim @ 22573:e327c9690dbe

Added tag v8.2.1834 for changeset 0fd4d7548b07636509d862a680f37dd9f3bd1514
author Bram Moolenaar <Bram@vim.org>
date Sun, 11 Oct 2020 18:15:05 +0200
parents aa91480771fe
children
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.

set shortmess+=A

for name in argv()[1:]
  let jsname = fnamemodify(name, ":t:r") .. ".js"
  exe "%s+" .. jsname .. "+" .. substitute(name, '\\', '/', 'g') .. "+"
endfor

write
last
quit