Skip to content

Commit

Permalink
Update readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
artur-shaik committed Oct 8, 2015
1 parent c2adb69 commit ccc167a
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,16 @@ Features:
- Generics;
- Lambdas;
- Annotations completion;
- Nested classes.
- Nested classes;
- Jsp support, without taglibs.

Features (originally existed):
- List members of a class, including (static) fields, (static) methods and ctors;
- List classes or subpackages of a package;
- Provide parameters information of a method, list all overload methods;
- Complete an incomplete word;
- Provide a complete JAVA parser written in Vim script language;
- Use the JVM to obtain most information;
- JSP is supported, Builtin objects such as request, session can be recognized.
- Use the JVM to obtain most information.

Features borrowed and ported to vimscript from vim-javacompleteex:
- Complete class name;
Expand Down Expand Up @@ -95,9 +95,13 @@ Add this to your `.vimrc` file:

To enable inserting class imports with F4, add:

`nnoremap <F4> :JCimportAdd<cr>`
`imap <F4> <Plug>(JavaComplete-Imports-Add)`

`inoremap <F4> <esc>:JCimportAddI<cr>`
`imap <F4> <Plug>(JavaComplete-Imports-RemoveUnused)`

`nmap <F4> <Plug>(JavaComplete-Imports-Add)`

`nmap <F4> <Plug>(JavaComplete-Imports-RemoveUnused)`

### Optional

Expand Down Expand Up @@ -155,7 +159,7 @@ To enable inserting class imports with F4, add:
- Cross session cache;
- Most used (classes, methods, vars) at first place (smart suggestions);
- FXML support;
- Check for jsp support;
- ~~Check for jsp support~~;
- Refactoring support?;
- Class creation helpers;
- ~~Generics~~;
Expand Down

0 comments on commit ccc167a

Please sign in to comment.