37 lines
785 B
XML
37 lines
785 B
XML
<?xml version="1.0"?>
|
|
|
|
<!DOCTYPE ACTIONS SYSTEM "actions.dtd">
|
|
|
|
<ACTIONS>
|
|
<ACTION NAME="factor-eval-selection">
|
|
<CODE>
|
|
sel = textArea.selectedText;
|
|
if(sel == null)
|
|
view.toolkit.beep();
|
|
else
|
|
factor.jedit.FactorPlugin.eval(view,sel);
|
|
</CODE>
|
|
</ACTION>
|
|
<ACTION NAME="factor-run-file">
|
|
<CODE>
|
|
buffer.save(view,null);
|
|
VFSManager.waitForRequests();
|
|
factor.jedit.FactorPlugin.eval(view,
|
|
"\""
|
|
+ MiscUtilities.charsToEscapes(buffer.path)
|
|
+ "\" run-file");
|
|
</CODE>
|
|
</ACTION>
|
|
<ACTION NAME="factor-apropos">
|
|
<CODE>
|
|
if(textArea.selectionCount == 0)
|
|
textArea.selectWord();
|
|
factor.jedit.FactorPlugin.eval(view,
|
|
"\""
|
|
+ MiscUtilities.charsToEscapes(
|
|
textArea.selectedText)
|
|
+ "\" apropos.");
|
|
</CODE>
|
|
</ACTION>
|
|
</ACTIONS>
|