comparison runtime/doc/gui_w32.txt @ 19813:350e1d3131d8

Update runtime files Commit: https://github.com/vim/vim/commit/191acfdecabfbd2a74867e77004196fb3b4a8c14 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Mar 27 20:42:43 2020 +0100 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Fri, 27 Mar 2020 21:00:05 +0100
parents 9b7f90e56753
children 1908e92b02fd
comparison
equal deleted inserted replaced
19812:7cde7ea94dd3 19813:350e1d3131d8
1 *gui_w32.txt* For Vim version 8.2. Last change: 2019 May 05 1 *gui_w32.txt* For Vim version 8.2. Last change: 2020 Mar 25
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
454 GVim can be build on MS-Windows with support for XPM files. |+xpm_w32| 454 GVim can be build on MS-Windows with support for XPM files. |+xpm_w32|
455 See the Make_mvc.mak file for instructions, search for XPM. 455 See the Make_mvc.mak file for instructions, search for XPM.
456 456
457 To try out if XPM support works do this: > 457 To try out if XPM support works do this: >
458 :help 458 :help
459 :exe 'sign define vimxpm icon=' . $VIMRUNTIME . '\\vim16x16.xpm' 459 :let runtime = escape($VIMRUNTIME, ' \')
460 :exe 'sign place 1 line=1 name=vimxpm file=' . expand('%:p') 460 :exe 'sign define vimxpm icon=' .. runtime .. '\\vim16x16.xpm'
461 :exe 'sign place 1 line=1 name=vimxpm file=' .. expand('%:p')
461 < 462 <
463 You may need to get the vim16x16.xpm file from github:
464 https://github.com/vim/vim/blob/master/runtime/vim16x16.xpm
465
462 466
463 vim:tw=78:sw=4:ts=8:noet:ft=help:norl: 467 vim:tw=78:sw=4:ts=8:noet:ft=help:norl: