-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactions.xml
More file actions
54 lines (47 loc) · 1.56 KB
/
actions.xml
File metadata and controls
54 lines (47 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0"?>
<!DOCTYPE ACTIONS SYSTEM "actions.dtd">
<ACTIONS>
<ACTION NAME="compileCurrentFile">
<CODE>
ch.so.agi.jedit.compile.CompileService.compile(view, buffer);
</CODE>
</ACTION>
<ACTION NAME="toggleCompileOnSave">
<!-- This runs when the user clicks the menu item -->
<CODE>
ch.so.agi.jedit.InterlisPlugin.toggleCompileOnSave();
</CODE>
<!-- This tells jEdit whether to draw the check‑mark -->
<IS_SELECTED>
return ch.so.agi.jedit.InterlisPlugin.compileOnSave();
</IS_SELECTED>
</ACTION>
<ACTION NAME="prettyPrintCurrentFile">
<CODE>
ch.so.agi.jedit.format.PrettyPrintService.prettyPrint(view, buffer);
</CODE>
</ACTION>
<ACTION NAME="interlis-uml-show">
<CODE>
view.getDockableWindowManager().showDockableWindow("interlis-uml");
</CODE>
</ACTION>
<ACTION NAME="interlis-uml-toggle">
<CODE>
view.getDockableWindowManager().toggleDockableWindow("interlis-uml");
</CODE>
</ACTION>
<ACTION NAME="interlis-collect-keywords">
<CODE>
ch.so.agi.jedit.keywords.ModelKeywordCollector.collectToNewBuffer(view);
</CODE>
</ACTION>
<ACTION NAME="interlis-uml-show-static">
<CODE>
ch.so.agi.jedit.uml._static.UmlStatic.show(view, buffer);
</CODE>
</ACTION>
<ACTION NAME="interlis.create-object-catalog">
<CODE>ch.so.agi.jedit.objectcatalog.CreateDocxAction.createDocx(view, buffer);</CODE>
</ACTION>
</ACTIONS>