We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Thanks you very much for the very interesting and useful page about Vim. I love Vim-Galore :-)
The full font name on Windows some time contains a trailing :cANSI
:cANSI
In such case the :Bigger and :Small command you propose doesn't seems to work fine. I propose to replace:
command! Bigger :let &guifont = substitute(&guifont, '\d\+$', '\=submatch(0)+1', '') command! Smaller :let &guifont = substitute(&guifont, '\d\+$', '\=submatch(0)-1', '')
by:
command! Bigger :let &guifont = substitute(&guifont, '\(\d\+\)\ze\(:cANSI\)\?$', '\=submatch(1)+1', '') command! Smaller :let &guifont = substitute(&guifont, '\(\d\+\)\ze\(:cANSI\)\?$', '\=submatch(1)-1', '')
Let me know if you want me to propose you a pull request.
Best regards, Vivian
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Thanks you very much for the very interesting and useful page about Vim.
I love Vim-Galore :-)
The full font name on Windows some time contains a trailing
:cANSI
In such case the :Bigger and :Small command you propose doesn't seems to work fine.
I propose to replace:
by:
Let me know if you want me to propose you a pull request.
Best regards,
Vivian
The text was updated successfully, but these errors were encountered: