久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長(zhǎng)資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      VIM:我的GVIM設(shè)置

      為了在linux環(huán)境下熟悉VIM,我在windows環(huán)境下安裝了GVIM8

      修改vimrc文件可以更改VIM默認(rèn)的設(shè)置,不需要每一次打開VIM就需要重新調(diào)整設(shè)置。

      以下時(shí)vimrc的全部?jī)?nèi)容:

        source $VIMRUNTIME/vimrc_example.vim    so $VIMRUNTIME/delmenu.vim    //以下三句將語言更改為英語  set langmenu=none  so $VIMRUNTIME/menu.vim    set guifont=Courier_new:h20:b:cDEFAULT   //更改字體,hxx是大小    set number  //顯示行號(hào)    set diffexpr=MyDiff()  colorscheme pablo  //設(shè)置主題顏色  function MyDiff()    let opt = '-a --binary '    if &diffopt =~ 'icase' | let opt = opt . '-i ' | endif    if &diffopt =~ 'iwhite' | let opt = opt . '-b ' | endif    let arg1 = v:fname_in    if arg1 =~ ' ' | let arg1 = '"' . arg1 . '"' | endif    let arg1 = substitute(arg1, '!', '!', 'g')    let arg2 = v:fname_new    if arg2 =~ ' ' | let arg2 = '"' . arg2 . '"' | endif    let arg2 = substitute(arg2, '!', '!', 'g')    let arg3 = v:fname_out    if arg3 =~ ' ' | let arg3 = '"' . arg3 . '"' | endif    let arg3 = substitute(arg3, '!', '!', 'g')    if $VIMRUNTIME =~ ' '      if &sh =~ ' ' . arg3    if exists('l:shxq_sav')      let &shellxquote=l:shxq_sav    endif  endfunction

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)