Skip to content

Commit 3c60776

Browse files
committed
Version update to v2.1
Generics, bug fixes.
1 parent 66f0ba0 commit 3c60776

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

autoload/java_parser.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
" Language: Java
33
" Maintainer: cheng fang <fangread@yahoo.com.cn>
44
" Last Changed: 2007-09-16
5-
" Version: 0.67
5+
" Version: 0.68
66
" Copyright: Copyright (C) 2007 cheng fang. All rights reserved.
77
" License: Vim License (see vim's :help license)
88

autoload/javacomplete.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
" Vim completion script
2-
" Version: 2.0
2+
" Version: 2.1
33
" Language: Java
44
" Maintainer: artur shaik <ashaihullin@gmail.com>
55
" Last Change: 2015-05-22

doc/javacomplete.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,12 @@ A single letter indicates the kind of compeltion item. These kinds are:
200200
default plugin will search `src` directory and add it
201201
automatically.
202202
203+
Disable maven repository:
204+
205+
let g:JavaComplete_MavenRepositoryDisable = 1
206+
By default this option is disabled (0).
207+
208+
203209
2.4 Commands *javacomplete-commands*
204210

205211
javacomplete#StartServer() manually run server.
@@ -268,6 +274,10 @@ The embedded parser works a bit slower than expected.
268274

269275
6.1 javacomplete *javacomplete-history*
270276

277+
v2.1
278+
2015-06-12 Generics completion. Bug fixes.
279+
Added g:JavaComplete_MavenRepositoryDisable option.
280+
271281
v2.0
272282
2015-05-26 Writed new library for reflection and parsing. Parsing make by
273283
third party library. Library run in server like way.

libs/javavi/src/main/java/kg/ash/javavi/Javavi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
public class Javavi {
2424

25-
static final String VERSION = "2.0.0";
25+
static final String VERSION = "2.1.0";
2626

2727
static final int STRATEGY_ALPHABETIC = 128;
2828
static final int STRATEGY_HIERARCHY = 256;

0 commit comments

Comments
 (0)