Skip to content

Commit

Permalink
Version update to v2.1
Browse files Browse the repository at this point in the history
Generics, bug fixes.
  • Loading branch information
artur-shaik committed Jun 12, 2015
1 parent 66f0ba0 commit 3c60776
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion autoload/java_parser.vim
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
" Language: Java
" Maintainer: cheng fang <fangread@yahoo.com.cn>
" Last Changed: 2007-09-16
" Version: 0.67
" Version: 0.68
" Copyright: Copyright (C) 2007 cheng fang. All rights reserved.
" License: Vim License (see vim's :help license)

Expand Down
2 changes: 1 addition & 1 deletion autoload/javacomplete.vim
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
" Vim completion script
" Version: 2.0
" Version: 2.1
" Language: Java
" Maintainer: artur shaik <ashaihullin@gmail.com>
" Last Change: 2015-05-22
Expand Down
10 changes: 10 additions & 0 deletions doc/javacomplete.txt
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,12 @@ A single letter indicates the kind of compeltion item. These kinds are:
default plugin will search `src` directory and add it
automatically.
Disable maven repository:
let g:JavaComplete_MavenRepositoryDisable = 1
By default this option is disabled (0).
2.4 Commands *javacomplete-commands*

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

6.1 javacomplete *javacomplete-history*

v2.1
2015-06-12 Generics completion. Bug fixes.
Added g:JavaComplete_MavenRepositoryDisable option.

v2.0
2015-05-26 Writed new library for reflection and parsing. Parsing make by
third party library. Library run in server like way.
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 @@ -22,7 +22,7 @@

public class Javavi {

static final String VERSION = "2.0.0";
static final String VERSION = "2.1.0";

static final int STRATEGY_ALPHABETIC = 128;
static final int STRATEGY_HIERARCHY = 256;
Expand Down

0 comments on commit 3c60776

Please sign in to comment.