We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 013d316 commit 98391b7Copy full SHA for 98391b7
README.md
@@ -2,6 +2,8 @@
2
3
Change font size easily.
4
5
+Currently only works on Windows and Mac OS X (not tested).
6
+
7
## Usage
8
9
1. Run `:Fontsize` to enter the state of changing font size.
autoload/fontsize.vim
@@ -77,7 +77,7 @@ function! fontsize#Change()
77
for size in l:sizes
78
let size = str2float(size) + l:increment
79
" Must keep the data type of l:sizes' items as string so that
80
- " str2float can be used without fault.
+ " str2float won't encount a type error.
81
let l:sizes[i] = string(size)
82
let g:fontsizes[i] = l:dimens[i] . l:sizes[i]
83
let l:fontlist[i] = l:names[i] . ':' . g:fontsizes[i]
0 commit comments