diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-21 20:10:02 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-21 20:10:02 +0000 |
commit | a1fa81508253bf4fec1f29b5e8d9735d55348b4c (patch) | |
tree | 2cb1e484668120081613006ac652481a1fcf05da /app-editors | |
parent | Stable everywhere (Manifest recommit) (diff) | |
download | gentoo-2-a1fa81508253bf4fec1f29b5e8d9735d55348b4c.tar.gz gentoo-2-a1fa81508253bf4fec1f29b5e8d9735d55348b4c.tar.bz2 gentoo-2-a1fa81508253bf4fec1f29b5e8d9735d55348b4c.zip |
Fix bug 54541: set ttymouse=xterm2 when running in xterm. Additionally comment
out some deprecated settings
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/vim-core/ChangeLog | 6 | ||||
-rw-r--r-- | app-editors/vim-core/files/vimrc | 8 |
2 files changed, 11 insertions, 3 deletions
diff --git a/app-editors/vim-core/ChangeLog b/app-editors/vim-core/ChangeLog index 74b4abee5f2f..45690a970097 100644 --- a/app-editors/vim-core/ChangeLog +++ b/app-editors/vim-core/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-editors/vim-core # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/vim-core/ChangeLog,v 1.86 2004/06/21 00:14:57 ciaranm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/vim-core/ChangeLog,v 1.87 2004/06/21 20:10:02 agriffis Exp $ + + 21 Jun 2004; <agriffis@gentoo.org> files/vimrc: + Fix bug 54541: set ttymouse=xterm2 when running in xterm. Additionally comment + out some deprecated settings 21 Jun 2004; Ciaran McCreesh <ciaranm@gentoo.org> vim-core-6.2-r9.ebuild: Moving s390 stable up to 6.2-r9 so that I can tidy up older versions and diff --git a/app-editors/vim-core/files/vimrc b/app-editors/vim-core/files/vimrc index 9fa7db0190e8..cb993bcadf67 100644 --- a/app-editors/vim-core/files/vimrc +++ b/app-editors/vim-core/files/vimrc @@ -49,10 +49,14 @@ if &t_Co > 2 || has("gui_running") endif if &term=="xterm" - set t_RV= " don't check terminal version - set t_Co=8 + " Previously we would unset t_RV to prevent gnome-terminal from beeping as + " vim started. These days it appears that gnome-terminal has been repaired, + " so re-enable this, and don't restrict t_Co=8. (21 Jun 2004 agriffis) + "set t_RV= " don't check terminal version + "set t_Co=8 set t_Sb=^[4%dm set t_Sf=^[3%dm + set ttymouse=xterm2 " only works for >=xfree86-3.3.3, should be okay endif if has("autocmd") |