vundle-cli 0.0.7.1 → 0.0.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +140 -0
- data/lib/vundle_cli/version.rb +1 -1
- data/test/TODO +0 -0
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 01025e0b26d62bd9cbf7bab134cba6210a984277
|
4
|
+
data.tar.gz: 79d2c429f903dc6892e7f81e2cca3d1b7da4ac17
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d28cd35eb912a20ff7a7a02d7750ea63c06865960f68e6a086049cc2faf94d3f2ab2f8866a594520e874ba0101994f9863e86402574ae4da356f38065c885560
|
7
|
+
data.tar.gz: 394dc475956981bb30c361b4a5cad9720863ec84293e943c91bad85d951c7e2fbd508ef253727f01fbd22364a2d6cbeebf09e50f5c8aa0f64c1d8e25730d755b
|
data/README.md
CHANGED
@@ -59,6 +59,146 @@ Or install it yourself as:
|
|
59
59
|
|
60
60
|
-t, --trace
|
61
61
|
Display backtrace when an error occurs
|
62
|
+
|
63
|
+
### Commands
|
64
|
+
|
65
|
+
**NAME**:
|
66
|
+
|
67
|
+
rm
|
68
|
+
|
69
|
+
**SYNOPSIS**:
|
70
|
+
|
71
|
+
vundle rm <plugin> [options]
|
72
|
+
|
73
|
+
**DESCRIPTION**:
|
74
|
+
|
75
|
+
Uninstall a plugin.
|
76
|
+
The command will remove the line ``Bundle plugin_name'' or ``Plugin plugin_name'' in your ``.vimrc'',
|
77
|
+
delete the configuration file for this plugin in the specified settings directory, and the plugin folder.
|
78
|
+
Before anything is deleted, the command will prompt you for confirmation unless the ``--force'' switch is on.
|
79
|
+
|
80
|
+
**EXAMPLES**:
|
81
|
+
|
82
|
+
# Remove plugin kien/ctrlp.vim
|
83
|
+
vundle rm kien/ctrlp.vim
|
84
|
+
|
85
|
+
# Or, remove any plugin that has ``ctrlp'' in its name (not recommended, it can be too ambiguous)
|
86
|
+
vundle rm ctrlp
|
87
|
+
|
88
|
+
**OPTIONS**:
|
89
|
+
|
90
|
+
--vimdir vimdir
|
91
|
+
Vim directory. Default to ~/.vim.
|
92
|
+
|
93
|
+
--settings settings_dir
|
94
|
+
Vim settings directory (where you configure your plugins). Default to ~/.vim/settings.
|
95
|
+
|
96
|
+
--vimrc vimrc
|
97
|
+
.vimrc path. Default to ~/.vimrc.
|
98
|
+
|
99
|
+
-f, --force
|
100
|
+
Force delete without confirmation. Disabled by default.
|
101
|
+
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
- - -
|
106
|
+
|
107
|
+
**NAME**:
|
108
|
+
|
109
|
+
list
|
110
|
+
|
111
|
+
**SYNOPSIS**:
|
112
|
+
|
113
|
+
vundle list [options]
|
114
|
+
|
115
|
+
**DESCRIPTION**:
|
116
|
+
|
117
|
+
List all installed plugins
|
118
|
+
|
119
|
+
**EXAMPLES**:
|
120
|
+
|
121
|
+
# List all installed plugins
|
122
|
+
vundle list --vimrc ~/.vimrc
|
123
|
+
|
124
|
+
**OPTIONS**:
|
125
|
+
|
126
|
+
--vimrc vimrc
|
127
|
+
.vimrc path. Default to ~/.vimrc.
|
128
|
+
|
129
|
+
|
130
|
+
- - -
|
131
|
+
|
132
|
+
**NAME**:
|
133
|
+
|
134
|
+
find
|
135
|
+
|
136
|
+
**SYNOPSIS**:
|
137
|
+
|
138
|
+
vundle find <plugin> [options]
|
139
|
+
|
140
|
+
**DESCRIPTION**:
|
141
|
+
|
142
|
+
Search for an installed plugin
|
143
|
+
|
144
|
+
**EXAMPLES**:
|
145
|
+
|
146
|
+
# Find a plugin that has substring ``gist''
|
147
|
+
vundle find gist
|
148
|
+
|
149
|
+
**OPTIONS**:
|
150
|
+
|
151
|
+
--vimrc vimrc
|
152
|
+
.vimrc path. Default to ~/.vimrc.
|
153
|
+
|
154
|
+
|
155
|
+
- - -
|
156
|
+
|
157
|
+
**NAME**:
|
158
|
+
|
159
|
+
clean
|
160
|
+
|
161
|
+
**SYNOPSIS**:
|
162
|
+
|
163
|
+
vundle clean [plugin] [options]
|
164
|
+
|
165
|
+
**DESCRIPTION**:
|
166
|
+
|
167
|
+
Clean up unused plugin related files (such as plugin folder and config file).
|
168
|
+
It will prompt you for confirmation before deleting anything (unless force switch is on).
|
169
|
+
For option ``--all'', the command gets a list of the plugins in your bundle folder (e.g: ~/.vim/bundle)
|
170
|
+
and compare them with the plugins in your vimrc in order to determine which plugins need to be cleaned up.
|
171
|
+
|
172
|
+
**EXAMPLES**:
|
173
|
+
|
174
|
+
# Clean all unused plugins
|
175
|
+
vundle clean --all
|
176
|
+
|
177
|
+
# Clean plugin vim-signify
|
178
|
+
vundle clean vim-signify
|
179
|
+
|
180
|
+
# Clean any plugins with names that have substring ``dirty''
|
181
|
+
vundle clean dirty
|
182
|
+
|
183
|
+
**OPTIONS**:
|
184
|
+
|
185
|
+
--vimdir vimdir
|
186
|
+
Vim directory. Default to ~/.vim.
|
187
|
+
|
188
|
+
--settings settings_dir
|
189
|
+
Vim settings directory (where you configure your plugins). Default to ~/.vim/settings.
|
190
|
+
|
191
|
+
--vimrc vimrc
|
192
|
+
.vimrc path. Default to ~/.vimrc.
|
193
|
+
|
194
|
+
-a, --all
|
195
|
+
Delete everything that is not installed in your vimrc. Disabled by default.
|
196
|
+
|
197
|
+
-l, --list
|
198
|
+
List all unused plugins.
|
199
|
+
|
200
|
+
-f, --force
|
201
|
+
Force delete files without prompt. Disabled by default.
|
62
202
|
|
63
203
|
|
64
204
|
## Contributing
|
data/lib/vundle_cli/version.rb
CHANGED
data/test/TODO
ADDED
File without changes
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vundle-cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.7.
|
4
|
+
version: 0.0.7.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bao Pham
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-06-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -74,6 +74,7 @@ files:
|
|
74
74
|
- lib/vundle_cli/import.rb
|
75
75
|
- lib/vundle_cli/uninstaller.rb
|
76
76
|
- lib/vundle_cli/version.rb
|
77
|
+
- test/TODO
|
77
78
|
- vundle-cli.gemspec
|
78
79
|
homepage: https://github.com/baopham/vundle-cli
|
79
80
|
licenses:
|
@@ -99,4 +100,5 @@ rubygems_version: 2.2.2
|
|
99
100
|
signing_key:
|
100
101
|
specification_version: 4
|
101
102
|
summary: A tiny CLI for Vim plugin manager Vundle
|
102
|
-
test_files:
|
103
|
+
test_files:
|
104
|
+
- test/TODO
|