Skip to content

Commit 2f11a7b

Browse files
committed
Version 2.3.
1 parent 1206a09 commit 2f11a7b

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ Features:
3333
- Server side java reflection class loader and parsing library;
3434
- Searches class files automatically, using `pom.xml` to append completion classpath;
3535
- Generics;
36-
- Lambdas.
36+
- Lambdas;
37+
- Annotations completion.
3738

3839
Features (originally existed):
3940
- List members of a class, including (static) fields, (static) methods and ctors;

autoload/javacomplete.vim

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
" Vim completion script
2-
" Version: 2.2
2+
" Version: 2.3
33
" Language: Java
44
" Maintainer: artur shaik <ashaihullin@gmail.com>
5-
" Last Change: 2015-07-08
5+
" Last Change: 2015-07-29
66
" Copyright: Copyright (C) 2006-2015 cheng fang, artur shaik. All rights reserved.
77
" License: Vim License (see vim's :help license)
88

doc/javacomplete.txt

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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
22

33
JAVACOMPLETE2 REFERENCE MANUAL by artur shaik~
44
ashaihullin@gmail.com~
@@ -277,6 +277,11 @@ The embedded parser works a bit slower than expected.
277277

278278
6.1 javacomplete *javacomplete-history*
279279

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+
280285
v2.2
281286
2015-07-08 Lambda expressions parsing.
282287

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
public class Javavi {
2727

28-
static final String VERSION = "2.2.0";
28+
static final String VERSION = "2.3.0";
2929

3030
public static String NEWLINE = "";
3131

0 commit comments

Comments
 (0)