vim退出後恢複終端內容

來源:互聯網
上載者:User

有些終端在vim退出後可以恢複到開啟vim前終端的狀態,類似這樣:

$ vim /etc/sysconfig/

####這裡表示開啟vim#####

sdskk,一些檔案內容

:q

$ vim /etc/sysconfig/                      ##終端恢複到先前狀態

但是有些不行,解決這個問題需要以下兩步:

1、設定TERM環境變數為xterm 或者 xterm-color,可以在.bashrc檔案中添加:export TERM=xterm-color

2、設定vim的t_ti和t_te變數的值(可選,例如在centos上就不需要)

用vim開啟一個檔案,normal模式下輸入:set t_ti 或者 :set t_te,若值類似:"^[[?1049h" and "^[[?1049l",那麼你需要在.vimrc中加入下面幾行:

if &term =~ "xterm"    " SecureCRT versions prior to 6.1.x do not support 4-digit DECSET    "     let &t_ti = "\<Esc>[?1049h"    "     let &t_te = "\<Esc>[?1049l"    " Use 2-digit DECSET instead    let &t_ti = "\<Esc>[?47h"    let &t_te = "\<Esc>[?47l"endif

轉自:http://forums.vandyke.com/showthread.php?t=3431

這樣應該就能解決問題了。

另外,有些朋友喜歡用screen進行多屏管理,如果也想要這種效果,需要在.screenrc設定檔中加入一行 altscreen on,如果是root使用者,可以編輯/etc/screenrc,找到altscreen,取消前面的注釋即可

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.