File tree 4 files changed +11
-5
lines changed
libs/javavi/src/main/java/kg/ash/javavi
4 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,8 @@ Features:
33
33
- Server side java reflection class loader and parsing library;
34
34
- Searches class files automatically, using ` pom.xml ` to append completion classpath;
35
35
- Generics;
36
- - Lambdas.
36
+ - Lambdas;
37
+ - Annotations completion.
37
38
38
39
Features (originally existed):
39
40
- List members of a class, including (static) fields, (static) methods and ctors;
Original file line number Diff line number Diff line change 1
1
" Vim completion script
2
- " Version: 2.2
2
+ " Version: 2.3
3
3
" Language: Java
4
4
" Maintainer: artur shaik <ashaihullin@gmail.com>
5
- " Last Change: 2015-07-08
5
+ " Last Change: 2015-07-29
6
6
" Copyright: Copyright (C) 2006-2015 cheng fang, artur shaik. 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
- *javacomplete.txt* For Vim version 7.4 and above. Last change: 2015-07-08
1
+ *javacomplete.txt* For Vim version 7.4 and above. Last change: 2015-07-29
2
2
3
3
JAVACOMPLETE2 REFERENCE MANUAL by artur shaik~
4
4
ashaihullin@gmail.com~
@@ -277,6 +277,11 @@ The embedded parser works a bit slower than expected.
277
277
278
278
6.1 javacomplete *javacomplete-history*
279
279
280
+ v2.3
281
+ 2015-07-29 Annotations completion support.
282
+ Option to swtich use of FQN in completion suggestions.
283
+ Check python support before start.
284
+
280
285
v2.2
281
286
2015-07-08 Lambda expressions parsing.
282
287
Original file line number Diff line number Diff line change 25
25
26
26
public class Javavi {
27
27
28
- static final String VERSION = "2.2 .0" ;
28
+ static final String VERSION = "2.3 .0" ;
29
29
30
30
public static String NEWLINE = "" ;
31
31
You can’t perform that action at this time.
0 commit comments