-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
e722: Missing comma in Dictionary #51
Comments
you need add the classes dir into g:JavaComplete_LibsPath, |
I added it with
to directly supply the dirs with the containing java source files but had no success. |
However, it seems to be related to the parsing of javadocs. If I change all the words like "don't" or "isn't" in "dont" and "isnt" the error disappears. |
the same Error i have got ! |
Sorry, couldn't find out. What exactly object you are trying to complete? In what line number? |
the error appears at line 8,after "t." |
"===============> javaComplete2 相关设置 映射
autocmd FileType java set omnifunc=javacomplete#Complete
autocmd FileType jsp set omnifunc=javacomplete#Complete
nmap <F4> :call javacomplete#AddImport()<cr>
imap <F4> <Esc>:call javacomplete#AddImport()<cr>
let g:JavaComplete_UseFQN = 1
"++++++> app1 补全配置
"let g:JavaComplete_LibsPath = '/home/wsdjeg/wsdjeg.github.io/java/app1/WEB-INF/classes:/home/wsdjeg/wsdjeg.github.io/lib/'
"let g:JavaComplete_SourcesPath = '/home/wsdjeg/wsdjeg.github.io/java/app1/'
"++++++> Invoicing_System 补全配置
let g:JavaComplete_LibsPath = '/home/wsdjeg/wsdjeg.github.io/java/invoicingsystem/WEB-INF/classes:/home/wsdjeg/wsdjeg.github.io/lib/'
let g:JavaComplete_SourcesPath = '/home/wsdjeg/wsdjeg.github.io/java/invoicingsystem/' |
@wsdjeg, it's looks like you have little bit another issue, I'm working on it. |
it causes by javadoc! /**
* TestJCimpl's testJC
*/ in |
Yeah, it's looks like javaparser lib, works bad with comments.
|
Try with last commit, please. |
did you remove the javadoc message from the complete manu? then only: |
Yes, I removed it, because it could be too much long. For javadoc, I think, we need to show it in another buffer, like YCM do it. |
yeah, usually it is too long and,i can not see the return type in the menu |
@SteveCharleston any updates? |
Hi, when trying complete an object of aa Class I have written I get the following error:
The class which triggers the error is this one:
https://github.com/SteveCharleston/RiG/blob/master/app/src/main/java/rigAPI/RigDBAccess.java
My vimrc can be found here:
https://github.com/SteveCharleston/dotfiles/blob/master/.vimrc
The text was updated successfully, but these errors were encountered: