mirror of
https://github.com/preservim/vim-thematic.git
synced 2025-11-11 03:13:49 -05:00
Merge pull request #6 from otommod/patch-1
Add missing 'a:' prefix to fallback
This commit is contained in:
@@ -66,7 +66,7 @@ function! s:getSize(font, fallback)
|
|||||||
" Add zero to convert to integer.
|
" Add zero to convert to integer.
|
||||||
let l:size = 0 + substitute(l:decodedFont, s:regex, '\2', '')
|
let l:size = 0 + substitute(l:decodedFont, s:regex, '\2', '')
|
||||||
else
|
else
|
||||||
let l:size = 0 + fallback
|
let l:size = 0 + a:fallback
|
||||||
endif
|
endif
|
||||||
return l:size
|
return l:size
|
||||||
endfunction
|
endfunction
|
||||||
|
|||||||
Reference in New Issue
Block a user