aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Kelly <pioto@gentoo.org>2007-05-06 18:09:06 +0000
committerMike Kelly <pioto@gentoo.org>2007-05-06 18:09:06 +0000
commita54074d35c7b0c264c681cab8fcc12014681ede4 (patch)
tree5ed72c95a9f1719bf6013f46b47a9d583553ba0a /ftplugin
parentSplit up gentoo-syntax into portage-syntax, eselect-syntax, and gentoo-syntax. (diff)
downloadgentoo-syntax-a54074d35c7b0c264c681cab8fcc12014681ede4.tar.gz
gentoo-syntax-a54074d35c7b0c264c681cab8fcc12014681ede4.tar.bz2
gentoo-syntax-a54074d35c7b0c264c681cab8fcc12014681ede4.zip
Split up gentoo-syntax (part 3).
svn path=/trunk/gentoo-syntax/; revision=31
Diffstat (limited to 'ftplugin')
-rw-r--r--ftplugin/eselect.vim26
1 files changed, 0 insertions, 26 deletions
diff --git a/ftplugin/eselect.vim b/ftplugin/eselect.vim
deleted file mode 100644
index 7c248d2..0000000
--- a/ftplugin/eselect.vim
+++ /dev/null
@@ -1,26 +0,0 @@
-" Vim filetype plugin file
-" Language: Eselect Module (bash)
-" Author: Ciaran McCreesh <ciaranm@gentoo.org>
-" Copyright: Copyright (c) 2004-2005 Ciaran McCreesh
-" Licence: You may redistribute this under the same terms as Vim itself
-"
-" This sets up filetype specific options for eselect modules. These settings
-" were pwned from ebuild.vim, but they wfm ..
-"
-
-if &compatible || v:version < 603
- finish
-endif
-
-runtime! ftplugin/sh.vim
-
-" Will-do-for-now whitespace settings
-setlocal tabstop=4
-setlocal shiftwidth=4
-setlocal noexpandtab
-setlocal textwidth=80
-
-" GLEP 31 settings (??)
-setlocal fileencoding=utf-8
-
-" vim: sw=4 ts=4 et fdm=marker