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 | 5fc35bd66551f396e66511cd6509e764ed9b0dd4 (patch) | |
tree | 33daeb8ff8f416e88ab692f6134aef09bf7f39e2 /app-editors/vim-core | |
parent | Added ~mips keyword (diff) | |
download | historical-5fc35bd66551f396e66511cd6509e764ed9b0dd4.tar.gz historical-5fc35bd66551f396e66511cd6509e764ed9b0dd4.tar.bz2 historical-5fc35bd66551f396e66511cd6509e764ed9b0dd4.zip |
Use setfiletype rather than set filetype= in our vimrc so that we can override it from plugins
Diffstat (limited to 'app-editors/vim-core')
-rw-r--r-- | app-editors/vim-core/ChangeLog | 6 | ||||
-rw-r--r-- | app-editors/vim-core/Manifest | 26 | ||||
-rw-r--r-- | app-editors/vim-core/files/vimrc | 2 |
3 files changed, 24 insertions, 10 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/Manifest b/app-editors/vim-core/Manifest index 118cc73c201a..a7b76f466744 100644 --- a/app-editors/vim-core/Manifest +++ b/app-editors/vim-core/Manifest @@ -1,12 +1,22 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + MD5 6d745fb259963da4b34e1012fbba6820 vim-core-6.3.ebuild 933 -MD5 85992a10f526d3ecb5f48b320e1263ef vim-core-6.3-r1.ebuild 936 -MD5 3330011ebccdcc03224f5ebb1c7701fb vim-core-6.2-r9.ebuild 904 -MD5 b86de55e83a18c3a56c3c66b31a7d518 ChangeLog 13119 +MD5 07439c193264ab287aeead5d5702b333 ChangeLog 13287 MD5 f3583430b2f7b0686cafd606b08bf203 metadata.xml 156 -MD5 274c9575ad877e2c6e86320fa43081e1 files/vimrc 3311 -MD5 c2d0302eae7fc80b2a1cb38ddab9d3d3 files/rphillips-invalcolorpatch.diff 722 -MD5 f7046d975c3b2dd7a6e82e4287e6d3ab files/digest-vim-core-6.3 277 -MD5 4de696416210fb1651b1835ebf8bd506 files/digest-vim-core-6.2-r9 349 -MD5 c8a344d069577df7e39c1f6592827642 files/digest-vim-core-6.3-r1 277 +MD5 3330011ebccdcc03224f5ebb1c7701fb vim-core-6.2-r9.ebuild 904 +MD5 85992a10f526d3ecb5f48b320e1263ef vim-core-6.3-r1.ebuild 936 MD5 6e3418258a9973a532d1703544411fa1 files/vimpatch.tar.bz2 3116 MD5 1dfedf2c72f0cb1ad37344fc60af67c7 files/ebuild.patch 491 +MD5 ad8e91d98e015089b71deca98e3511f9 files/vimrc 3316 +MD5 f7046d975c3b2dd7a6e82e4287e6d3ab files/digest-vim-core-6.3 277 +MD5 c8a344d069577df7e39c1f6592827642 files/digest-vim-core-6.3-r1 277 +MD5 c2d0302eae7fc80b2a1cb38ddab9d3d3 files/rphillips-invalcolorpatch.diff 722 +MD5 4de696416210fb1651b1835ebf8bd506 files/digest-vim-core-6.2-r9 349 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.2.4 (GNU/Linux) + +iD8DBQFBJB0+LLFUmVNQ7rkRAtVZAJ9ofiXPsBDSzKUA4SdaB8morJsKIACgsCLH +dJf6cfLsoeET77AOiZMEc1I= +=azQp +-----END PGP SIGNATURE----- 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 |