Skip to content

Commit

Permalink
Version 2.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
artur-shaik committed Jul 29, 2015
1 parent 1206a09 commit 2f11a7b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ Features:
- Server side java reflection class loader and parsing library;
- Searches class files automatically, using `pom.xml` to append completion classpath;
- Generics;
- Lambdas.
- Lambdas;
- Annotations completion.

Features (originally existed):
- List members of a class, including (static) fields, (static) methods and ctors;
Expand Down
4 changes: 2 additions & 2 deletions autoload/javacomplete.vim
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
" Vim completion script
" Version: 2.2
" Version: 2.3
" Language: Java
" Maintainer: artur shaik <ashaihullin@gmail.com>
" Last Change: 2015-07-08
" Last Change: 2015-07-29
" Copyright: Copyright (C) 2006-2015 cheng fang, artur shaik. All rights reserved.
" License: Vim License (see vim's :help license)

Expand Down
7 changes: 6 additions & 1 deletion doc/javacomplete.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*javacomplete.txt* For Vim version 7.4 and above. Last change: 2015-07-08
*javacomplete.txt* For Vim version 7.4 and above. Last change: 2015-07-29

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

6.1 javacomplete *javacomplete-history*

v2.3
2015-07-29 Annotations completion support.
Option to swtich use of FQN in completion suggestions.
Check python support before start.

v2.2
2015-07-08 Lambda expressions parsing.

Expand Down
2 changes: 1 addition & 1 deletion libs/javavi/src/main/java/kg/ash/javavi/Javavi.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

public class Javavi {

static final String VERSION = "2.2.0";
static final String VERSION = "2.3.0";

public static String NEWLINE = "";

Expand Down

0 comments on commit 2f11a7b

Please sign in to comment.