RSTALanguageSupport
RSTALanguageSupport copied to clipboard
A library adding code completion and other advanced features for Java, JavaScript, Perl, and other languages to RSyntaxTextArea.
Hey together, trying to get context-assist working in RSTA for my JavaScripts: Im using the JavaScriptLanguageSupport together with the Rhino Engine and adding my java project-jar with JarManager::addClassFileSource, so that...
Hi, first of all thanks for this and all RSyntaxTextArea related projects. Wonderful work. Now for my suggestion :) I am using these projects in project that works with "plugins"...
Functions inside of initializers or function calls (and maybe in other positions as well) are currently ignored. Such functions, passed as callbacks, are common is some JS enviroments. First commit...
Currently no autocomplete is offered for variables declared with let or const, they are ignored. Adding support seams very easy, the tokens seem to be already parsed and processed fine....
JDKs 9+ don't use rt.jar anymore but modules located in jsdk_home/jmods. This PR detects if this directory exists when loading the JRE info. If it exists, then it relies on...
Hey there, thank you for the awsome project. Sadly currently i'm facing the problem that the trigger key is already in use and therefore the autocompletion wont come up. Is...
Intellisense for Groovy similar to how it is implemented for Java.
I tried to run the `org.fife.rsta.ac.demo.DemoApp` class in AdoptOpenJDK 11.0.9.101, but a null pointer exception is thrown. I debugged the code and found the problem. In the `org.fife.rsta.ac.java.buildpath.LibraryInfo` class, the...
Is it possible to add Java's >=9 jdk classes to autocomplete? The method JarManager.addCurrentJreClassFileSource() doesn't work with Java >= 9, it look just for rt.jar and src.zip, which is absent...
Hey guys, with this change, currently loaded classes are supported by autocomplete. In case the JarManager does not know a class, it tries to get the ClassFile from the classes...