File tree 1 file changed +9
-5
lines changed
1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -35,8 +35,8 @@ This Vim plugin is built on top of the great tool [CodeQuery](https://github.com
35
35
* [x] ` Javascript `
36
36
* [x] ` Ruby `
37
37
* [x] ` Go `
38
- * [ ] ` Java ` (coming very soon)
39
- * [ ] ` C, C++ ` (coming very soon)
38
+ * [x ] ` Java `
39
+ * [x ] ` C, C++ `
40
40
41
41
<br >
42
42
@@ -61,9 +61,9 @@ This Vim plugin is built on top of the great tool [CodeQuery](https://github.com
61
61
> Main TODO:
62
62
> * Use Vim8's new features to enhance usability.
63
63
> * Do lazy-loading.
64
- > * Support Java, C, C++.
64
+ > * Fix some bugs
65
65
>
66
- > Completeness: 90 %
66
+ > Completeness: 92 %
67
67
> v1.0 Release Date: Mid-September
68
68
>
69
69
> It is Ok to try it! 👌
@@ -268,6 +268,8 @@ set tags=./javascript_tags;/
268
268
set tags+=./python_tags;/
269
269
set tags+=./ruby_tags;/
270
270
set tags+=./go_tags;/
271
+ set tags+=./java_tags;/
272
+ set tags+=./c_tags;/
271
273
```
272
274
273
275
#### Clean Ctags, Cscope ... Files For Your Languages
@@ -282,7 +284,9 @@ let g:codequery_enable_auto_clean_languages = ['python']
282
284
let g:codequery_build_python_db_cmd = '...'
283
285
let g:codequery_build_javascript_db_cmd = '...'
284
286
let g:codequery_build_ruby_db_cmd = '...'
285
- let g:codequery_build_go_db_cmd = '...'
287
+ let g:codequery_build_go_db_cmd = '...'
288
+ let g:codequery_build_java_db_cmd = '...'
289
+ let g:codequery_build_c_db_cmd = '...'
286
290
```
287
291
288
292
<br >
You can’t perform that action at this time.
0 commit comments