pd4d10 / octohint

The missing IntelliSense hint for GitHub and GitLab
https://chrome.google.com/webstore/detail/octohint/hbkpjkfdheainjkkebeoofkpgddnnbpk
MIT License
962 stars 35 forks source link

Support other languages #3

Closed pexcn closed 7 years ago

pexcn commented 7 years ago

Such as C, Java, C++..., Do you have a plan to support their?

pd4d10 commented 7 years ago

@pexcn v1.5.0 support all languages.

Octohint is a pure client thing, we can only use JavaScript to do code analysis. since there is no JS libs to do AST parsing for C, Java or C++ code, only basic token match is supported. Means that if you click a variable named foo, it will find all foo, just string matching.

Not that smart, but I hope it will be helpful.

Thanks!

pexcn commented 7 years ago

Thanks a lot~