Skip to content

Commit 85717a8

Browse files
authored
Merge pull request #114 from Krzmbrzl/plugin
finished work on 0.7.0
2 parents 8264862 + 1a7923e commit 85717a8

File tree

448 files changed

+84572
-75063
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

448 files changed

+84572
-75063
lines changed

plugin/.project

-17
This file was deleted.

plugin/Raven.SQDev.Editors/META-INF/MANIFEST.MF

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: Editors
44
Bundle-SymbolicName: raven.sqdev.editors;singleton:=true
5-
Bundle-Version: 0.5.0
5+
Bundle-Version: 0.6.0
66
Bundle-Activator: raven.sqdev.editors.activator.Activator
77
Require-Bundle: org.eclipse.ui,
88
org.eclipse.core.runtime,
@@ -13,7 +13,8 @@ Require-Bundle: org.eclipse.ui,
1313
raven.sqdev.preferences,
1414
raven.sqdev.misc;bundle-version="0.1.0",
1515
org.eclipse.core.resources,
16-
org.eclipse.ui.ide
16+
org.eclipse.ui.ide,
17+
org.eclipse.core.filesystem;bundle-version="1.4.100"
1718
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
1819
Bundle-ActivationPolicy: lazy
1920
Export-Package: org.antlr.v4.runtime;
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,31 @@
1-
IF=1
2-
IFN=2
3-
ELSE=3
4-
ENDIF=4
5-
DEFINE=5
6-
UNDEFINE=6
7-
INCLUDE=7
8-
UNKNOWN=8
9-
NUMBER=9
10-
STRING=10
11-
ID=11
12-
ESC_LINEBREAK=12
13-
LINEBREAK=13
14-
WS=14
15-
COMMENT=15
16-
ANY=16
17-
'#ifdef'=1
18-
'#ifndef'=2
19-
'#else'=3
20-
'#endif'=4
21-
'#define'=5
22-
'#undef'=6
23-
'#include'=7
1+
COMMENT=1
2+
WS=2
3+
PREP_PREFIX=3
4+
NL=4
5+
INCLUDE=5
6+
DEFINE=6
7+
UNDEFINE=7
8+
IF=8
9+
IFN=9
10+
ELSE=10
11+
ENDIF=11
12+
LPAREN=12
13+
RPAREN=13
14+
COMMA=14
15+
STRING=15
16+
ID=16
17+
LETTER=17
18+
INT=18
19+
OTHER=19
20+
'#'=3
21+
'\n'=4
22+
'#include'=5
23+
'#define'=6
24+
'#undef'=7
25+
'#ifdef'=8
26+
'#ifndef'=9
27+
'#else'=10
28+
'#endif'=11
29+
'('=12
30+
')'=13
31+
','=14
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,31 @@
1-
IF=1
2-
IFN=2
3-
ELSE=3
4-
ENDIF=4
5-
DEFINE=5
6-
UNDEFINE=6
7-
INCLUDE=7
8-
UNKNOWN=8
9-
NUMBER=9
10-
STRING=10
11-
ID=11
12-
ESC_LINEBREAK=12
13-
LINEBREAK=13
14-
WS=14
15-
COMMENT=15
16-
ANY=16
17-
'#ifdef'=1
18-
'#ifndef'=2
19-
'#else'=3
20-
'#endif'=4
21-
'#define'=5
22-
'#undef'=6
23-
'#include'=7
1+
COMMENT=1
2+
WS=2
3+
PREP_PREFIX=3
4+
NL=4
5+
INCLUDE=5
6+
DEFINE=6
7+
UNDEFINE=7
8+
IF=8
9+
IFN=9
10+
ELSE=10
11+
ENDIF=11
12+
LPAREN=12
13+
RPAREN=13
14+
COMMA=14
15+
STRING=15
16+
ID=16
17+
LETTER=17
18+
INT=18
19+
OTHER=19
20+
'#'=3
21+
'\n'=4
22+
'#include'=5
23+
'#define'=6
24+
'#undef'=7
25+
'#ifdef'=8
26+
'#ifndef'=9
27+
'#else'=10
28+
'#endif'=11
29+
'('=12
30+
')'=13
31+
','=14

plugin/Raven.SQDev.Editors/plugin.xml

+7
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,13 @@
2525
id="raven.sqdev.editors.stringtableeditor"
2626
name="StringTableEditor">
2727
</editor>
28+
<editor
29+
class="raven.sqdev.editors.other.ConfigEditor"
30+
default="true"
31+
extensions="cpp, hpp, sqm, ext"
32+
id="raven.sqdev.editors.configEditor"
33+
name="ConfigEditor">
34+
</editor>
2835
</extension>
2936

3037
</plugin>

0 commit comments

Comments
 (0)