-
Notifications
You must be signed in to change notification settings - Fork 0
/
actions.xml
60 lines (49 loc) · 1.48 KB
/
actions.xml
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
55
56
57
58
59
<!DOCTYPE ACTIONS SYSTEM "actions.dtd">
<ACTIONS>
<!-- CscopeFinder find actions -->
<ACTION NAME="cscopefinder-find-symbol" NO_REPEAT="TRUE">
<CODE>
cscopefinder.CscopeFinderPlugin.findSymbol(view);
</CODE>
</ACTION>
<ACTION NAME="cscopefinder-find-calling" NO_REPEAT="TRUE">
<CODE>
cscopefinder.CscopeFinderPlugin.findCalling(view);
</CODE>
</ACTION>
<ACTION NAME="cscopefinder-find-definition" NO_REPEAT="TRUE">
<CODE>
cscopefinder.CscopeFinderPlugin.findDefinition(view, false);
</CODE>
</ACTION>
<ACTION NAME="cscopefinder-preview-definition" NO_REPEAT="TRUE">
<CODE>
cscopefinder.CscopeFinderPlugin.findDefinition(view, true);
</CODE>
</ACTION>
<ACTION NAME="cscopefinder-find-include" NO_REPEAT="TRUE">
<CODE>
cscopefinder.CscopeFinderPlugin.findIncludedBy(view);
</CODE>
</ACTION>
<ACTION NAME="cscopefinder-find-called-by" NO_REPEAT="TRUE">
<CODE>
cscopefinder.CscopeFinderPlugin.findCalledBy(view);
</CODE>
</ACTION>
<ACTION NAME="cscopefinder-update-index" NO_REPEAT="TRUE">
<CODE>
cscopefinder.CscopeFinderPlugin.updateDb(view);
</CODE>
</ACTION>
<ACTION NAME="cscopefinder-generate-index" NO_REPEAT="TRUE">
<CODE>
cscopefinder.CscopeFinderPlugin.generateDb(view);
</CODE>
</ACTION>
<ACTION NAME="cscopefinder-abort-command" NO_REPEAT="TRUE">
<CODE>
cscopefinder.CscopeFinderPlugin.abortCurrentCommand(view);
</CODE>
</ACTION>
</ACTIONS>