summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Olexa <darkside@gentoo.org>2010-04-15 19:30:32 +0000
committerJeremy Olexa <darkside@gentoo.org>2010-04-15 19:30:32 +0000
commit5c8a2ee3e70ca7f5ea64949efc40310fe474ace2 (patch)
tree68f2c8eb1d361425cdb3c5139c01b19462db1355 /app-editors/vim-core/files
parentMoved to new Python ABI stuff, #315459 (diff)
downloadhistorical-5c8a2ee3e70ca7f5ea64949efc40310fe474ace2.tar.gz
historical-5c8a2ee3e70ca7f5ea64949efc40310fe474ace2.tar.bz2
historical-5c8a2ee3e70ca7f5ea64949efc40310fe474ace2.zip
Import Gentoo Prefix changes, convert to EAPI3, add keywords. bug 310991
Package-Manager: portage-2.1.8.3/cvs/Linux armv7l
Diffstat (limited to 'app-editors/vim-core/files')
-rw-r--r--app-editors/vim-core/files/vimrc-r414
1 files changed, 7 insertions, 7 deletions
diff --git a/app-editors/vim-core/files/vimrc-r4 b/app-editors/vim-core/files/vimrc-r4
index 5273ff3248e2..f54e5a39f909 100644
--- a/app-editors/vim-core/files/vimrc-r4
+++ b/app-editors/vim-core/files/vimrc-r4
@@ -2,7 +2,7 @@ scriptencoding utf-8
" ^^ Please leave the above line at the start of the file.
" Default configuration file for Vim
-" $Header: /var/cvsroot/gentoo-x86/app-editors/vim-core/files/vimrc-r4,v 1.2 2010/03/09 18:47:21 lack Exp $
+" $Header: /var/cvsroot/gentoo-x86/app-editors/vim-core/files/vimrc-r4,v 1.3 2010/04/15 19:30:32 darkside Exp $
" Written by Aron Griffis <agriffis@gentoo.org>
" Modified by Ryan Phillips <rphillips@gentoo.org>
@@ -126,10 +126,10 @@ endif
" {{{ Fix &shell, see bug #101665.
if "" == &shell
- if executable("/bin/bash")
- set shell=/bin/bash
- elseif executable("/bin/sh")
- set shell=/bin/sh
+ if executable("@GENTOO_PORTAGE_EPREFIX@/bin/bash")
+ set shell=@GENTOO_PORTAGE_EPREFIX@/bin/bash
+ elseif executable("@GENTOO_PORTAGE_EPREFIX@/bin/sh")
+ set shell=@GENTOO_PORTAGE_EPREFIX@/bin/sh
endif
endif
"}}}
@@ -191,8 +191,8 @@ endif " has("autocmd")
" }}}
" {{{ vimrc.local
-if filereadable("/etc/vim/vimrc.local")
- source /etc/vim/vimrc.local
+if filereadable("@GENTOO_PORTAGE_EPREFIX@/etc/vim/vimrc.local")
+ source @GENTOO_PORTAGE_EPREFIX@/etc/vim/vimrc.local
endif
" }}}