Can anyone direct me to a tutorial on writing plugins for Jedit? I have a pipedream of using Jedit as an editor for SAS. Currently, it does syntax highlighting, but I feel it is or could be made better by fleshing out the ideas better.
A couple questions:
- Can you enable tab completion in Jedit?
- Can you specify "environments" that begin and end with certain syntax? (For instance, the word "keep" makes sense between the lines
data xxx;
andrun;
but not betweenproc sort data=xxx;
andrun;
So highlighting it there would be counter-instructive to inexperienced coders. - Can you store variables in a work place and reference them from a drop down menu (such as variable names in a dataset)
- Can you execute code from the shell/terminal and pipe .log files back into the Jedit message window?