From 2f11a7becc10e68134a35130a0d8a158c11d56eb Mon Sep 17 00:00:00 2001 From: Artur Shaik Date: Wed, 29 Jul 2015 12:26:43 +0600 Subject: [PATCH] Version 2.3. --- README.md | 3 ++- autoload/javacomplete.vim | 4 ++-- doc/javacomplete.txt | 7 ++++++- libs/javavi/src/main/java/kg/ash/javavi/Javavi.java | 2 +- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index be05d8cf..645eb073 100644 --- a/README.md +++ b/README.md @@ -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; diff --git a/autoload/javacomplete.vim b/autoload/javacomplete.vim index bba5ec2e..362f9f41 100644 --- a/autoload/javacomplete.vim +++ b/autoload/javacomplete.vim @@ -1,8 +1,8 @@ " Vim completion script -" Version: 2.2 +" Version: 2.3 " Language: Java " Maintainer: artur shaik -" 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) diff --git a/doc/javacomplete.txt b/doc/javacomplete.txt index 6211cab2..bdc55adb 100644 --- a/doc/javacomplete.txt +++ b/doc/javacomplete.txt @@ -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~ @@ -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. diff --git a/libs/javavi/src/main/java/kg/ash/javavi/Javavi.java b/libs/javavi/src/main/java/kg/ash/javavi/Javavi.java index f9d9af16..efb08b44 100644 --- a/libs/javavi/src/main/java/kg/ash/javavi/Javavi.java +++ b/libs/javavi/src/main/java/kg/ash/javavi/Javavi.java @@ -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 = "";