General code completion framework written in C/C++

2019-06-25 14:25发布

Is there any framework written in C/C++/C++11 for writing code completion tools? Or maybe are there some libraries that allow code completion for Java or C++ (also written in C++?). I'm writing my custom IDE in C++ for Java (and not only Java) development and I want to add code completion support to it the best possible way, without reinventing the weel ;)

1条回答
我命由我不由天
2楼-- · 2019-06-25 14:40

clang_complete is a plugin for vim for accurately completing C, C++, Objective-C and Objective-C++ code: https://github.com/Rip-Rip/clang_complete/ It uses clang - an open source C++ compiler written in C++ for doing the job. I guess you may find it useful.

查看更多
登录 后发表回答