1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 12:50:04 +08:00

Merge pull request #1651 from zhujinxuan/gui-font

Fix error `unknown option guifont` in VimR
This commit is contained in:
Wang Shidong 2018-04-22 22:54:15 -05:00 committed by GitHub
commit c8288e511d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,6 +28,6 @@ endif
if g:spacevim_hiddenfileinfo == 1 && has('patch-7.4.1570')
set shortmess+=F
endif
if !empty(g:spacevim_guifont)
let &guifont = g:spacevim_guifont
if has('gui_running') && !empty(g:spacevim_guifont)
let &guifont = g:spacevim_guifont
endif