zoukankan      html  css  js  c++  java
  • Change font size quickly

    Change font size quickly - Vim Tips Wiki

    Change font size quickly

    Edit Talk0
    1,612pages on
    this wiki

    Duplicate tip

    This tip is very similar to the following:

    These tips need to be merged – see the merge guidelines.

    Tip 760 Printable Monobook Previous Next

    created 2004 · complexity intermediate · author Wouter Bolsterlee · version 6.0


    If you regularly switch to a larger or smaller font, for example because someone looking at your code thinks the letters are too small, or because you want to lay back in your chair while reading, this tip is for you.

    The following script defines two commands, :LargerFont and :SmallerFont, to allow quick adjustments to the font size used in the gtk2 gui. Change minfontsize and maxfontsize to suit your needs. See below for alternative solutions.

    To use this script, put the following code into ~/.vim/plugin/gtk2fontsize.vim or in your vimrc.

    let s:pattern = '^\(.* \)\([1-9][0-9]*\)

    let s:minfontsize = 6 let s:maxfontsize = 16 function! AdjustFontSize(amount) if has("gui_gtk2") && has("gui_running") let fontname = substitute(&guifont, s:pattern, '\1', '') let cursize = substitute(&guifont, s:pattern, '\2', '') let newsize = cursize + a:amount if (newsize >= s:minfontsize) && (newsize <= s:maxfontsize) let newfont = fontname . newsize let &guifont = newfont endif else echoerr "You need to run the GTK2 version of Vim to use this function." endif endfunction function! LargerFont() call AdjustFontSize(1) endfunction command! LargerFont call LargerFont() function! SmallerFont() call AdjustFontSize(-1) endfunction command! SmallerFont call SmallerFont()

  • 相关阅读:
    作业作业
    Alpha 冲刺 (4/10)
    Alpha 冲刺 (3/10)
    Alpha 冲刺 (2/10)
    Alpha 冲刺 (1/10)
    项目需求分析评审表
    项目需求分析答辩总结
    项目选题报告答辩总结
    UML
    各组项目答辩评分与存在问题
  • 原文地址:https://www.cnblogs.com/lexus/p/2811105.html
Copyright © 2011-2022 走看看