diff options
author | Ciaran McCreesh <ciaranm@gentoo.org> | 2004-08-19 03:26:19 +0000 |
---|---|---|
committer | Ciaran McCreesh <ciaranm@gentoo.org> | 2004-08-19 03:26:19 +0000 |
commit | 8658564ddd7188fa4c805641c12a5077f0438cc9 (patch) | |
tree | cca0159433d55396f01812ef2b0c492a3c34578d /app-editors | |
parent | Added ~mips keyword (Manifest recommit) (diff) | |
download | gentoo-2-8658564ddd7188fa4c805641c12a5077f0438cc9.tar.gz gentoo-2-8658564ddd7188fa4c805641c12a5077f0438cc9.tar.bz2 gentoo-2-8658564ddd7188fa4c805641c12a5077f0438cc9.zip |
Use setfiletype rather than set filetype= in our vimrc so that we can override it from plugins
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/vim-core/ChangeLog | 6 | ||||
-rw-r--r-- | app-editors/vim-core/files/vimrc | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/app-editors/vim-core/ChangeLog b/app-editors/vim-core/ChangeLog index d795bce9a60c..ef27ebd6102a 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 Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/vim-core/ChangeLog,v 1.99 2004/07/17 16:30:12 tgall Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/vim-core/ChangeLog,v 1.100 2004/08/19 03:26:19 ciaranm Exp $ + + 19 Aug 2004; Ciaran McCreesh <ciaranm@gentoo.org> files/vimrc: + Use setfiletype rather than set filetype= in our vimrc so that we can override + it from plugins 17 Jul 2004; Tom Gall <tgall@gentoo.org> vim-core-6.3-r1.ebuild: stable on ppc64 diff --git a/app-editors/vim-core/files/vimrc b/app-editors/vim-core/files/vimrc index cb993bcadf67..ead2f3424df6 100644 --- a/app-editors/vim-core/files/vimrc +++ b/app-editors/vim-core/files/vimrc @@ -67,7 +67,7 @@ augroup gentoo " Gentoo-specific settings for ebuilds. These are the federally-mandated " required tab settings. See the following for more information: " http://www.gentoo.org/doc/en/xml/gentoo-howto.xml - au BufRead,BufNewFile *.e{build,class} let is_bash=1|set ft=sh + au BufRead,BufNewFile *.e{build,class} let is_bash=1|setfiletype sh au BufRead,BufNewFile *.e{build,class} set ts=4 sw=4 noexpandtab " In text files, limit the width of text to 78 characters, but be careful |