Mercurial > vim
annotate pixmaps/tb_print.xpm @ 24283:bcfff560e089 v8.2.2682
patch 8.2.2682: Vim9: cannot find Name.Func from "import * as Name"
Commit: https://github.com/vim/vim/commit/529fb5a5f62378bbaac00e1ed9b9c32c6e20c1b9
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Apr 1 12:57:57 2021 +0200
patch 8.2.2682: Vim9: cannot find Name.Func from "import * as Name"
Problem: Vim9: cannot find Name.Func from "import * as Name". (Alexander
Goussas)
Solution: When no variable found try finding a function. (closes #8045)
Check that the function was exported.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 01 Apr 2021 13:00:03 +0200 |
parents | af1bcb9a13c0 |
children |
rev | line source |
---|---|
7 | 1 /* XPM */ |
2 static char * tb_print_xpm[] = { | |
3 /* width height ncolors cpp [x_hot y_hot] */ | |
4 "18 18 7 1 0 0", | |
5 /* colors */ | |
6 " s none m none c none", | |
7 ". s iconColor1 m black c #000000", | |
44 | 8 "X s iconColor2 m none c #FFFFFF", |
9 "o s iconGray2 m none c #bdbdbd", | |
7 | 10 "O s iconGray5 m black c #737373", |
11 "+ s bottomShadowColor m black c #5D6069", | |
12 "@ c #FF1144", | |
13 /* pixels */ | |
14 " ....... ", | |
15 " .XXXXX.. ", | |
44 | 16 " .XXXXX.X. ", |
7 | 17 " .XXXXX.... ", |
44 | 18 " .XXXXXXXX. ", |
19 " .XXXXXXXX. ", | |
20 " ..XXXXXXXX.. ", | |
7 | 21 " .XXXXXXXX.O ", |
22 "................ ", | |
23 ".XXXXXXXXXXXXXO. ", | |
24 ".X@@ooooooooooO.O ", | |
25 ".XooooooooooooO.O ", | |
26 ".XooooooooooooO.O ", | |
27 "................O ", | |
28 " .OOOOOOOOOOOO.OO ", | |
29 " ..............O ", | |
30 " OOOOOOOOOOOOO ", | |
31 " "}; |