From 4e97fd95d8b75af792c4691c4a136136f11b8413 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=AA=E3=81=A4=E3=81=8D?= Date: Mon, 21 Jan 2013 03:17:04 -0500 Subject: [PATCH] Add Pathogen/Vundle support Closes #79. --- docs/source/overview.rst | 2 +- powerline/bindings/vim/{ => plugin}/source_plugin.vim | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename powerline/bindings/vim/{ => plugin}/source_plugin.vim (69%) diff --git a/docs/source/overview.rst b/docs/source/overview.rst index 6509dfd5..2d2883e9 100644 --- a/docs/source/overview.rst +++ b/docs/source/overview.rst @@ -114,7 +114,7 @@ to the plugin location. Add the following line to your ``vimrc``, where ``{path}`` is the path to the main Powerline project directory:: - source {path}/powerline/bindings/vim/source_plugin.vim + source {path}/powerline/bindings/vim/plugin/source_plugin.vim Terminal prompts ^^^^^^^^^^^^^^^^ diff --git a/powerline/bindings/vim/source_plugin.vim b/powerline/bindings/vim/plugin/source_plugin.vim similarity index 69% rename from powerline/bindings/vim/source_plugin.vim rename to powerline/bindings/vim/plugin/source_plugin.vim index 84be659e..543f9dd8 100644 --- a/powerline/bindings/vim/source_plugin.vim +++ b/powerline/bindings/vim/plugin/source_plugin.vim @@ -6,6 +6,6 @@ if ! has('python') endif python import sys, vim -python sys.path.append(vim.eval('expand(":h:h:h:h")')) +python sys.path.append(vim.eval('expand(":h:h:h:h:h")')) -source :h/powerline.vim +source :h:h/powerline.vim