문제

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 ;)

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top