Mercurial > vim
annotate src/po/fixfilenames.vim @ 28041:64f78eb337ea v8.2.4545
patch 8.2.4545: MS-Windows: the installed icon is low resolution
Commit: https://github.com/vim/vim/commit/176711f06966f6691a29c410e4693bf14e0f3d74
Author: Christian Brabandt <cb@256bit.org>
Date: Fri Mar 11 15:24:11 2022 +0000
patch 8.2.4545: MS-Windows: the installed icon is low resolution
Problem: MS-Windows: the installed icon is low resolution.
Solution: Use a better icon. Install vim.ico. (Christian Brabandt,
closes #9931, closes #9930)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 11 Mar 2022 16:30:03 +0100 |
parents | aa91480771fe |
children | 04563887d70e |
rev | line source |
---|---|
21989
52e970719f4b
patch 8.2.1544: cannot translate messages in a Vim script
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1 " Invoked with the name "vim.pot" and a list of Vim script names. |
52e970719f4b
patch 8.2.1544: cannot translate messages in a Vim script
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2 " Converts them to a .js file, stripping comments, so that xgettext works. |
52e970719f4b
patch 8.2.1544: cannot translate messages in a Vim script
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
3 |
52e970719f4b
patch 8.2.1544: cannot translate messages in a Vim script
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
4 set shortmess+=A |
52e970719f4b
patch 8.2.1544: cannot translate messages in a Vim script
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
5 |
52e970719f4b
patch 8.2.1544: cannot translate messages in a Vim script
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
6 for name in argv()[1:] |
52e970719f4b
patch 8.2.1544: cannot translate messages in a Vim script
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
7 let jsname = fnamemodify(name, ":t:r") .. ".js" |
22071
aa91480771fe
patch 8.2.1585: messages in globals.h not translated
Bram Moolenaar <Bram@vim.org>
parents:
21989
diff
changeset
|
8 exe "%s+" .. jsname .. "+" .. substitute(name, '\\', '/', 'g') .. "+" |
21989
52e970719f4b
patch 8.2.1544: cannot translate messages in a Vim script
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
9 endfor |
52e970719f4b
patch 8.2.1544: cannot translate messages in a Vim script
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
10 |
52e970719f4b
patch 8.2.1544: cannot translate messages in a Vim script
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
11 write |
52e970719f4b
patch 8.2.1544: cannot translate messages in a Vim script
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
12 last |
52e970719f4b
patch 8.2.1544: cannot translate messages in a Vim script
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
13 quit |