summaryrefslogtreecommitdiffstats
path: root/runtime/doc/gui_w32.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-03-27 20:42:43 +0100
committerBram Moolenaar <Bram@vim.org>2020-03-27 20:42:43 +0100
commit191acfdecabfbd2a74867e77004196fb3b4a8c14 (patch)
tree01bbbb5000f2852ba0ea098b21ba1d5350ecea70 /runtime/doc/gui_w32.txt
parent37bb030cd9088ee66dc2d41c2d3602d1e5f4a7ef (diff)
Update runtime files
Diffstat (limited to 'runtime/doc/gui_w32.txt')
-rw-r--r--runtime/doc/gui_w32.txt10
1 files changed, 7 insertions, 3 deletions
diff --git a/runtime/doc/gui_w32.txt b/runtime/doc/gui_w32.txt
index 002fab3cd6..fda3618336 100644
--- a/runtime/doc/gui_w32.txt
+++ b/runtime/doc/gui_w32.txt
@@ -1,4 +1,4 @@
-*gui_w32.txt* For Vim version 8.2. Last change: 2019 May 05
+*gui_w32.txt* For Vim version 8.2. Last change: 2020 Mar 25
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -456,8 +456,12 @@ See the Make_mvc.mak file for instructions, search for XPM.
To try out if XPM support works do this: >
:help
- :exe 'sign define vimxpm icon=' . $VIMRUNTIME . '\\vim16x16.xpm'
- :exe 'sign place 1 line=1 name=vimxpm file=' . expand('%:p')
+ :let runtime = escape($VIMRUNTIME, ' \')
+ :exe 'sign define vimxpm icon=' .. runtime .. '\\vim16x16.xpm'
+ :exe 'sign place 1 line=1 name=vimxpm file=' .. expand('%:p')
<
+You may need to get the vim16x16.xpm file from github:
+https://github.com/vim/vim/blob/master/runtime/vim16x16.xpm
+
vim:tw=78:sw=4:ts=8:noet:ft=help:norl: