File tree Expand file tree Collapse file tree 4 files changed +13
-3
lines changed
libs/javavi/src/main/java/kg/ash/javavi Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 2
2
" Language: Java
3
3
" Maintainer: cheng fang <fangread@yahoo.com.cn>
4
4
" Last Changed: 2007-09-16
5
- " Version: 0.67
5
+ " Version: 0.68
6
6
" Copyright: Copyright (C) 2007 cheng fang. All rights reserved.
7
7
" License: Vim License (see vim's :help license)
8
8
Original file line number Diff line number Diff line change 1
1
" Vim completion script
2
- " Version: 2.0
2
+ " Version: 2.1
3
3
" Language: Java
4
4
" Maintainer: artur shaik <ashaihullin@gmail.com>
5
5
" Last Change: 2015-05-22
Original file line number Diff line number Diff line change @@ -200,6 +200,12 @@ A single letter indicates the kind of compeltion item. These kinds are:
200
200
default plugin will search `src` directory and add it
201
201
automatically.
202
202
203
+ Disable maven repository:
204
+
205
+ let g:JavaComplete_MavenRepositoryDisable = 1
206
+ By default this option is disabled (0).
207
+
208
+
203
209
2.4 Commands *javacomplete-commands*
204
210
205
211
javacomplete#StartServer() manually run server.
@@ -268,6 +274,10 @@ The embedded parser works a bit slower than expected.
268
274
269
275
6.1 javacomplete *javacomplete-history*
270
276
277
+ v2.1
278
+ 2015-06-12 Generics completion. Bug fixes.
279
+ Added g:JavaComplete_MavenRepositoryDisable option.
280
+
271
281
v2.0
272
282
2015-05-26 Writed new library for reflection and parsing. Parsing make by
273
283
third party library. Library run in server like way.
Original file line number Diff line number Diff line change 22
22
23
23
public class Javavi {
24
24
25
- static final String VERSION = "2.0 .0" ;
25
+ static final String VERSION = "2.1 .0" ;
26
26
27
27
static final int STRATEGY_ALPHABETIC = 128 ;
28
28
static final int STRATEGY_HIERARCHY = 256 ;
You can’t perform that action at this time.
0 commit comments