사용자 도구

사이트 도구


vim:gvim

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

다음 판
이전 판
vim:gvim [2013/11/14 15:12]
kwon37xi 새로 만듦
vim:gvim [2020/12/06 21:57] (현재)
kwon37xi
줄 3: 줄 3:
   * GVim 화면에서 마우스 사라짐 현상이 발생하면 ''set mousehide'' 옵션이 켜져 있기 때문이다.   * GVim 화면에서 마우스 사라짐 현상이 발생하면 ''set mousehide'' 옵션이 켜져 있기 때문이다.
   * ''set nomousehide'' 옵션으로 마우스를 보이게 할 수 있다.   * ''set nomousehide'' 옵션으로 마우스를 보이게 할 수 있다.
 +
 +===== Font Size 조정 =====
 +  * [[https://vim8.org/scripts/script.php?script_id=2809|fontsize : Adjust Gvim font size via keypresses]]
 +  * [[https://vi.stackexchange.com/questions/6478/how-do-i-create-buttons-on-the-toolbar-to-increase-and-decrease-font-size|gvim - How do I create buttons on the toolbar to increase and decrease font size? - Vi and Vim Stack Exchange]]
 +
 +===== maximize =====
 +  * [[https://vim.fandom.com/wiki/Maximize_or_set_initial_window_size|Maximize or set initial window size | Vim Tips Wiki | Fandom]]
 +
 +<code>
 +if has("gui_running")
 +  " GUI is running or is about to start.
 +  " Maximize gvim window (for an alternative on Windows, see simalt below).
 +  set lines=999 columns=999
 +else
 +  " This is console Vim.
 +  if exists("+lines")
 +    set lines=50
 +  endif
 +  if exists("+columns")
 +    set columns=100
 +  endif
 +endif
 +</code>
 +
 +===== Toolbar Icon Size =====
 +<code sh>
 +:set toolbariconsize=tiny|small|medium|large|huge|giant
 +</code>
  
  
vim/gvim.1384409570.txt.gz · 마지막으로 수정됨: 2013/11/14 15:12 저자 kwon37xi