Mercurial > vim
view src/po/fixfilenames.vim @ 27336:9ef98290c41a v8.2.4196
patch 8.2.4196: various file types not recognized
Commit: https://github.com/vim/vim/commit/428058ab3213e81531cbd7989f4267870f35d52e
Author: =?UTF-8?q?Dundar=20G=C3=B6c?= <gocdundar@gmail.com>
Date: Sun Jan 23 17:09:05 2022 +0000
patch 8.2.4196: various file types not recognized
Problem: Various file types not recognized.
Solution: Add patterns to recognize more file types (closes https://github.com/vim/vim/issues/9607)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 23 Jan 2022 18:15:03 +0100 |
parents | aa91480771fe |
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. 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