@@ -35,16 +35,16 @@ Features:
35
35
- Generics;
36
36
- Lambdas;
37
37
- Annotations completion;
38
- - Nested classes.
38
+ - Nested classes;
39
+ - Jsp support, without taglibs.
39
40
40
41
Features (originally existed):
41
42
- List members of a class, including (static) fields, (static) methods and ctors;
42
43
- List classes or subpackages of a package;
43
44
- Provide parameters information of a method, list all overload methods;
44
45
- Complete an incomplete word;
45
46
- Provide a complete JAVA parser written in Vim script language;
46
- - Use the JVM to obtain most information;
47
- - JSP is supported, Builtin objects such as request, session can be recognized.
47
+ - Use the JVM to obtain most information.
48
48
49
49
Features borrowed and ported to vimscript from vim-javacompleteex:
50
50
- Complete class name;
@@ -95,9 +95,13 @@ Add this to your `.vimrc` file:
95
95
96
96
To enable inserting class imports with F4, add:
97
97
98
- ` nnoremap <F4> :JCimportAdd<cr> `
98
+ ` imap <F4> <Plug>(JavaComplete-Imports-Add) `
99
99
100
- ` inoremap <F4> <esc>:JCimportAddI<cr> `
100
+ ` imap <F4> <Plug>(JavaComplete-Imports-RemoveUnused) `
101
+
102
+ ` nmap <F4> <Plug>(JavaComplete-Imports-Add) `
103
+
104
+ ` nmap <F4> <Plug>(JavaComplete-Imports-RemoveUnused) `
101
105
102
106
### Optional
103
107
@@ -155,7 +159,7 @@ To enable inserting class imports with F4, add:
155
159
- Cross session cache;
156
160
- Most used (classes, methods, vars) at first place (smart suggestions);
157
161
- FXML support;
158
- - Check for jsp support;
162
+ - ~~ Check for jsp support~~ ;
159
163
- Refactoring support?;
160
164
- Class creation helpers;
161
165
- ~~ Generics~~ ;
0 commit comments