Skip to content

Commit ec03c7e

Browse files
committed
Included docu back. Need to fix the docu with LightSymbol
1 parent 5019a75 commit ec03c7e

4 files changed

Lines changed: 15 additions & 7 deletions

File tree

Mathematica-IntelliJ-Plugin.iml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,14 @@
1515
<orderEntry type="inheritedJdk" />
1616
<orderEntry type="sourceFolder" forTests="false" />
1717
<orderEntry type="library" name="plugin Libs" level="project" />
18+
<orderEntry type="module-library" scope="RUNTIME">
19+
<library>
20+
<CLASSES>
21+
<root url="jar://$MODULE_DIR$/lib/usages.jar!/" />
22+
</CLASSES>
23+
<JAVADOC />
24+
<SOURCES />
25+
</library>
26+
</orderEntry>
1827
</component>
1928
</module>

resources/META-INF/plugin.xml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,13 @@
4444

4545
<projectTemplatesFactory implementation="de.halirutan.mathematica.module.MathematicaProjectTemplatesFactory"/>
4646

47-
<!-- Highlighting and annotating of code, StructureView and documentation lookup-->
4847

4948
<lang.syntaxHighlighterFactory language="Mathematica"
5049
implementationClass="de.halirutan.mathematica.codeinsight.highlighting.MathematicaSyntaxHighlighterFactory"/>
51-
<!--<lang.psiStructureViewFactory language="Mathematica"-->
52-
<!--implementationClass="de.halirutan.mathematica.codeinsight.structureview.MathematicaStructureViewFactory"/>-->
53-
<!--<lang.documentationProvider language="Mathematica"-->
54-
<!--implementationClass="de.halirutan.mathematica.documentation.MathematicaDocumentationProvider"/>-->
50+
<lang.psiStructureViewFactory language="Mathematica"
51+
implementationClass="de.halirutan.mathematica.codeinsight.structureview.MathematicaStructureViewFactory"/>
52+
<lang.documentationProvider language="Mathematica"
53+
implementationClass="de.halirutan.mathematica.documentation.MathematicaDocumentationProvider"/>
5554

5655
<annotator language="Mathematica"
5756
implementationClass="de.halirutan.mathematica.codeinsight.highlighting.MathematicaHighlightingAnnotator"/>

src/de/halirutan/mathematica/lang/psi/impl/LightSymbol.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,6 @@ public Object[] getVariants() {
146146

147147
@Override
148148
public boolean isSoft() {
149-
return false;
149+
return true;
150150
}
151151
}

src/de/halirutan/mathematica/lang/psi/impl/SymbolImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,6 @@ public Object[] getVariants() {
219219

220220
@Override
221221
public boolean isSoft() {
222-
return false;
222+
return true;
223223
}
224224
}

0 commit comments

Comments
 (0)