문서의 이전 판입니다!
set mousehide 옵션이 켜져 있기 때문이다.set nomousehide 옵션으로 마우스를 보이게 할 수 있다.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