view src/po/fixfilenames.vim @ 27710:5f8a4fece0ca v8.2.4381

patch 8.2.4381: translation file listed twice Commit: https://github.com/vim/vim/commit/0e76714e901d179a2f020815f07fb375274b5404 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Feb 14 15:59:05 2022 +0000 patch 8.2.4381: translation file listed twice Problem: Translation file listed twice. Solution: Remove one entry.
author Bram Moolenaar <Bram@vim.org>
date Mon, 14 Feb 2022 17:00:03 +0100
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