Skip to content

Commit 912b4b2

Browse files
committedFeb 6, 2014
Improve documentation
1 parent 0c3d90e commit 912b4b2

File tree

3 files changed

+42
-10
lines changed

3 files changed

+42
-10
lines changed
 

‎LICENSE-MIT.txt

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Copyright (C) 2010 http://github.com/gmarik
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4+
5+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
7+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

‎README.md

+11-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,20 @@
22

33
## About
44

5-
NeoBundle is a Vim plugin manager. This plugin is based on my
6-
Vundle(https://github.com/gmarik/vundle) fork in first version, but I added
7-
tons of features.
5+
NeoBundle is a Vim plugin manager. This plugin is based on
6+
Vundle(https://github.com/gmarik/vundle), but I renamed and added tons of
7+
features. Because, Vundle's author does not want to add huge features in
8+
Vundle.
89

910
Requirements: Vim 7.2.051 or above.
1011

12+
Note: Neobundle is not stable plugin manager. If you want to stable plugin
13+
manager, you should use Vundle plugin. It is well works widely and more
14+
tested. If you want to use extended features, you can use neobundle.
15+
16+
Vundle: Stable, simple, for beginners
17+
neobundle: Early development, complex, for power users
18+
1119
## How it works
1220

1321
Plugins are defined in NeoBundle by calling `NeoBundle '<plugin repository location>'`. NeoBundle

‎doc/neobundle.txt

+24-7
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,19 @@ FAQ |neobundle-faq|
4141
==============================================================================
4242
INTRODUCTION *neobundle-introduction*
4343

44-
*neobundle* is the ultimate Vim package manager. This plugin is based on my
45-
Vundle(https://github.com/gmarik/vundle) fork in first version, but I added
46-
tons of features.
44+
*neobundle* is the ultimate Vim package manager. This plugin is based on
45+
Vundle(https://github.com/gmarik/vundle), but I renamed and added tons of
46+
features. Because, Vundle's author does not want to add huge features in
47+
Vundle.
4748

48-
For example:
49+
Note: Neobundle is not stable plugin manager. If you want to stable plugin
50+
manager, you should use Vundle plugin. It is well works widely and more
51+
tested. If you want to use extended features, you can use neobundle.
52+
53+
Vundle features : Stable, simple, good for beginners
54+
neobundle features : Early development, complex, good for power users
55+
56+
neobundle features :
4957
* Uses |vimproc| if available
5058
* |unite.vim| interface
5159
* Revision lock
@@ -1267,15 +1275,24 @@ FAQ *neobundle-faq*
12671275
Q: What's the neobundle advantage for Vundle or other plugin management
12681276
system?
12691277

1270-
A:
1271-
1. improved command name(:Bundle vs :NeoBundle).
1278+
A: neobundle solves some problems in Vundle or other plugin management system.
1279+
But you must know they are huge and complex features.
1280+
1281+
1. plugin prefixed command name(:Bundle vs :NeoBundle).
1282+
https://github.com/gmarik/Vundle.vim/issues/76
12721283
2. neobundle works if you set 'shellslash' in your .vimrc.
1284+
https://github.com/gmarik/Vundle.vim/issues/111
12731285
3. neobundle supports vimproc(asynchronous update/install).
1286+
https://github.com/gmarik/Vundle.vim/issues/259
12741287
4. neobundle supports unite.vim interface(update/install/search).
12751288
5. neobundle supports revision lock feature.
1289+
https://github.com/gmarik/Vundle.vim/issues/35
12761290
6. neobundle supports other VCS(Subversion/Git).
1291+
https://github.com/gmarik/Vundle.vim/pull/134
1292+
https://github.com/gmarik/Vundle.vim/pull/268
12771293
7. neobundle supports lazy initialization for optimizing startup time.
1278-
8. and so on...
1294+
https://github.com/gmarik/Vundle.vim/issues/364
1295+
https://github.com/gmarik/Vundle.vim/pull/98
12791296

12801297
Q: I want to manage the rsense Vim plugin using neobundle.
12811298

0 commit comments

Comments
 (0)
Please sign in to comment.