summaryrefslogtreecommitdiffstats
path: root/bundle/Vundle.vim/CONTRIBUTING.md
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2015-11-06 11:58:40 +0200
committerAhmed Abdelhalim <[email protected]>2015-11-06 11:58:40 +0200
commitd1519066b435b69ec685930234eeb97e32483295 (patch)
treeae155924c798ba7ea148bb8c88e92386a9a99df2 /bundle/Vundle.vim/CONTRIBUTING.md
parent7b0849783fc6a0864d1c5d69d95ec93a605ed7a5 (diff)
Chore: Update Vundle
Should later move vundle to be installed via submodule or subtree
Diffstat (limited to 'bundle/Vundle.vim/CONTRIBUTING.md')
-rw-r--r--bundle/Vundle.vim/CONTRIBUTING.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/bundle/Vundle.vim/CONTRIBUTING.md b/bundle/Vundle.vim/CONTRIBUTING.md
index 2162ffc..ec31f8f 100644
--- a/bundle/Vundle.vim/CONTRIBUTING.md
+++ b/bundle/Vundle.vim/CONTRIBUTING.md
@@ -14,15 +14,15 @@ Issues
Before submitting an issue, be sure to check the following places for answers.
-1. Vundle docs at [`:h vundle`](https://github.com/gmarik/Vundle.vim/blob/master/doc/vundle.txt).
+1. Vundle docs at [`:h vundle`](https://github.com/VundleVim/Vundle.vim/blob/master/doc/vundle.txt).
-2. The [FAQ](https://github.com/gmarik/Vundle.vim/search).
+2. The [FAQ](https://github.com/VundleVim/Vundle.vim/wiki).
-3. [Search](https://github.com/gmarik/Vundle.vim/search) the repository for related issues.
+3. [Search](https://github.com/VundleVim/Vundle.vim/search) the repository for related issues.
## Try To Eliminate Your Vimrc
-In order to make sure it isn't just `.vimrc` replace your own config file with the [minimal vimrc](https://github.com/gmarik/Vundle.vim/blob/master/test/minirc.vim). Clear out bundles and then try to reproduce.
+In order to make sure it isn't just `.vimrc` replace your own config file with the [minimal vimrc](https://github.com/VundleVim/Vundle.vim/blob/master/test/minirc.vim). Clear out bundles and then try to reproduce.
If the problem stops, likely there is an issue in your user configuration. You can incrementally add back your user changes to the minimal file testing the bug each time. This will allow you to slowly bisect the issue. You may want to test one plugin at a time.
@@ -46,7 +46,7 @@ To better respond to issues please follow these general guidelines when explaini
I am using Vim on Kubuntu 13.04 64 bit and I get the following error... (add further explanation here)
-To reproduce the bug, use the vimrc file below and run `:BundleInstall`... (continue with steps)
+To reproduce the bug, use the vimrc file below and run `:PluginInstall`... (continue with steps)
Vimrc:
```
@@ -55,8 +55,8 @@ syntax on
filetype off
set rtp+=~/.vim/bundle/Vundle.vim/
call vundle#rc()
-Bundle 'gmarik/Vundle.vim'
-Bundle 'relevant/plugin'
+Plugin 'VundleVim/Vundle.vim'
+Plugin 'relevant/plugin'
filetype plugin indent on
.... more user configs here...