대한 VIM 도움말에서 restorescreen :
'restorescreen' 'rs' 'norestorescreen' 'nors'
'restorescreen' 'rs' boolean (default on)
global
{not in Vi} {only in Windows 95/NT console version}
When set, the screen contents is restored when exiting Vim. This also
happens when executing external commands.
For non-Windows Vim: You can set or reset the 't_ti' and 't_te'
options in your .vimrc. To disable restoring:
set t_ti= t_te=
To enable restoring (for an xterm):
set t_ti=^[7^[[r^[[?47h t_te=^[[?47l^[8
(Where ^[ is an <Esc>, type CTRL-V <Esc> to insert it)
당신은
set norestorescreen
-또는-
set restorescreen!
.vimrc 어딘가에. (또는 추가 스크립트 중 하나). 기본값은 이전 화면의 내용을 복원하는 것입니다.
전체 옵션 이름을 찾지 못한 경우 짧은 버전 ( nors / rs! )을 찾으십시오.