Skip to content

Commit 11fdc42

Browse files
committed
Update repository references throughout documentation. Also, fixed an
incorrect URL and updated references to ':Bundle' commands to ':Plugin' commands
1 parent 05be0a5 commit 11fdc42

4 files changed

Lines changed: 15 additions & 15 deletions

File tree

CONTRIBUTING.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ Issues
1414

1515
Before submitting an issue, be sure to check the following places for answers.
1616

17-
1. Vundle docs at [`:h vundle`](https://github.com/gmarik/Vundle.vim/blob/master/doc/vundle.txt).
17+
1. Vundle docs at [`:h vundle`](https://github.com/VundleVim/Vundle.vim/blob/master/doc/vundle.txt).
1818

19-
2. The [FAQ](https://github.com/gmarik/Vundle.vim/search).
19+
2. The [FAQ](https://github.com/VundleVim/Vundle.vim/wiki).
2020

21-
3. [Search](https://github.com/gmarik/Vundle.vim/search) the repository for related issues.
21+
3. [Search](https://github.com/VundleVim/Vundle.vim/search) the repository for related issues.
2222

2323
## Try To Eliminate Your Vimrc
2424

25-
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.
25+
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.
2626

2727
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.
2828

@@ -46,7 +46,7 @@ To better respond to issues please follow these general guidelines when explaini
4646

4747
I am using Vim on Kubuntu 13.04 64 bit and I get the following error... (add further explanation here)
4848

49-
To reproduce the bug, use the vimrc file below and run `:BundleInstall`... (continue with steps)
49+
To reproduce the bug, use the vimrc file below and run `:PluginInstall`... (continue with steps)
5050

5151
Vimrc:
5252
```
@@ -55,8 +55,8 @@ syntax on
5555
filetype off
5656
set rtp+=~/.vim/bundle/Vundle.vim/
5757
call vundle#rc()
58-
Bundle 'gmarik/Vundle.vim'
59-
Bundle 'relevant/plugin'
58+
Plugin 'VundleVim/Vundle.vim'
59+
Plugin 'relevant/plugin'
6060
filetype plugin indent on
6161
6262
.... more user configs here...

autoload/vundle.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
" Vundle is a shortcut for Vim Bundle and Is a simple plugin manager for Vim
22
" Author: gmarik
3-
" HomePage: http://github.com/gmarik/Vundle.vim
4-
" Readme: http://github.com/gmarik/Vundle.vim/blob/master/README.md
3+
" HomePage: http://github.com/VundleVim/Vundle.vim
4+
" Readme: http://github.com/VundleVim/Vundle.vim/blob/master/README.md
55
" Version: 0.10.2
66

77
" Plugin Commands

doc/vundle.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@ more information.
5454

5555
*vundle-windows*
5656
If you are using Windows, see instructions on the Wiki
57-
https://github.com/gmarik/Vundle.vim/wiki/Vundle-for-Windows.
57+
https://github.com/VundleVim/Vundle.vim/wiki/Vundle-for-Windows.
5858

5959
*vundle-faq*
6060
If you run into any issues, please consult the FAQ at
61-
https://github.com/gmarik/Vundle.vim/wiki
61+
https://github.com/VundleVim/Vundle.vim/wiki
6262

6363
2. Setup Vundle:
6464
>
65-
git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
65+
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
6666
<
6767
3. Configure bundles:
6868

@@ -79,7 +79,7 @@ more information.
7979
"call vundle#begin('~/some/path/here')
8080
8181
" let Vundle manage Vundle, required
82-
Plugin 'gmarik/Vundle.vim'
82+
Plugin 'VundleVim/Vundle.vim'
8383
8484
" The following are examples of different formats supported.
8585
" Keep Plugin commands between vundle#begin/end.
@@ -208,7 +208,7 @@ GitHub
208208
------
209209
GitHub is used when a user/repo is passed to `Plugin`.
210210
>
211-
Plugin 'gmarik/Vundle.vim' => https://github.com/gmarik/Vundle.vim
211+
Plugin 'VundleVim/Vundle.vim' => https://github.com/VundleVim/Vundle.vim
212212
213213
Vim Scripts
214214
-----------

test/minirc.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ syntax on
33
filetype off
44
set rtp+=~/.vim/bundle/Vundle.vim/
55
call vundle#begin()
6-
Plugin 'gmarik/Vundle.vim'
6+
Plugin 'VundleVim/Vundle.vim'
77
call vundle#end()
88
filetype plugin indent on
99

0 commit comments

Comments
 (0)