-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Renaming done to close #76 #86
Closed
Closed
Changes from 2 commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,65 +9,65 @@ | |
1. Setup [Vundle]: | ||
|
||
``` | ||
$ git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle | ||
$ git clone http://github.com/gmarik/vundle.git ~/.vim/vundle/vundle | ||
``` | ||
|
||
2. Configure bundles: | ||
2. Configure vundles: | ||
|
||
Sample `.vimrc`: | ||
|
||
```vim | ||
set nocompatible " be iMproved | ||
filetype off " required! | ||
|
||
set rtp+=~/.vim/bundle/vundle/ | ||
set rtp+=~/.vim/vundle/vundle/ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here |
||
call vundle#rc() | ||
|
||
" let Vundle manage Vundle | ||
" required! | ||
Bundle 'gmarik/vundle' | ||
" required! | ||
Vundle 'gmarik/vundle' | ||
|
||
" My Bundles here: | ||
" My Vundles here: | ||
" | ||
" original repos on github | ||
Bundle 'tpope/vim-fugitive' | ||
Bundle 'Lokaltog/vim-easymotion' | ||
Bundle 'rstacruz/sparkup', {'rtp': 'vim/'} | ||
Vundle 'tpope/vim-fugitive' | ||
Vundle 'Lokaltog/vim-easymotion' | ||
Vundle 'rstacruz/sparkup', {'rtp': 'vim/'} | ||
" vim-scripts repos | ||
Bundle 'L9' | ||
Bundle 'FuzzyFinder' | ||
Bundle 'rails.vim' | ||
Vundle 'L9' | ||
Vundle 'FuzzyFinder' | ||
Vundle 'rails.vim' | ||
" non github repos | ||
Bundle 'git://git.wincent.com/command-t.git' | ||
Vundle 'git://git.wincent.com/command-t.git' | ||
" ... | ||
|
||
filetype plugin indent on " required! | ||
filetype plugin indent on " required! | ||
" | ||
" Brief help | ||
" :BundleList - list configured bundles | ||
" :BundleInstall(!) - install(update) bundles | ||
" :BundleSearch(!) foo - search(or refresh cache first) for foo | ||
" :BundleClean(!) - confirm(or auto-approve) removal of unused bundles | ||
" :VundleList - list configured vundles | ||
" :VundleInstall(!) - install(update) vundles | ||
" :VundleSearch(!) foo - search(or refresh cache first) for foo | ||
" :VundleClean(!) - confirm(or auto-approve) removal of unused vundles | ||
" | ||
" see :h vundle for more details or wiki for FAQ | ||
" NOTE: comments after Bundle command are not allowed.. | ||
" NOTE: comments after Vundle command are not allowed.. | ||
|
||
``` | ||
|
||
3. Install configured bundles: | ||
3. Install configured vundles: | ||
|
||
Launch `vim`, run `:BundleInstall`. | ||
Launch `vim`, run `:VundleInstall`. | ||
|
||
*Windows users* see [Vundle for Windows](https://github.com/gmarik/vundle/wiki/Vundle-for-Windows) | ||
|
||
Installing requires [Git] and triggers [Git clone](http://gitref.org/creating/#clone) for each configured repo to `~/.vim/bundle/`. | ||
Installing requires [Git] and triggers [Git clone](http://gitref.org/creating/#clone) for each configured repo to `~/.vim/vundle/`. | ||
|
||
## Why Vundle | ||
|
||
[Vundle] allows to: | ||
|
||
- keep track and configure your scripts right in `.vimrc` | ||
- [install] configured scripts (aka bundle) | ||
- [install] configured scripts (aka bundle) | ||
- [update] configured scripts | ||
- [search] by name [all available vim scripts] | ||
- [clean] unused scripts up | ||
|
@@ -117,10 +117,10 @@ see [wiki](/gmarik/vundle/wiki) | |
## TODO: | ||
[Vundle] is a work in progress so any ideas/patches appreciated | ||
|
||
* √ activate newly added bundles on .vimrc reload or after :BundleInstall | ||
* √ activate newly added vundles on .vimrc reload or after :VundleInstall | ||
* √ use preview window for search results | ||
* √ vim documentation | ||
* √ put vundle to bundles/ too(will fix vundle help) | ||
* √ put vundle to vundles/ too(will fix vundle help) | ||
* √ tests | ||
* √ improve error handling | ||
* allow specify revision/version? | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To avoid confusion we could use
~/.vim/vundles/vundle
instead