You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ For a very quick start just download and install the free [Community Edition of
11
11
(note that you don't have to provide a username. Just leave the field blank).
12
12
##![Docs][doc-image]Documentation
13
13
14
-
There are two kinds of documentation: For **users** there is the [documentation page](http://wlplugin.halirutan.de/index.php/documentation) and a very detailed [blog post](http://wlplugin.halirutan.de/index.php/blog/7-how-to-use-idea-effectively-with-mathematica-code) on the official website. There, you will learn what features the plug-in provides and how you can use them.
14
+
There are two kinds of documentation: For **users** there is the [GitHub Wiki page](https://github.com/halirutan/Mathematica-IntelliJ-Plugin/wiki) that I will update regularely and a very detailed [blog post](http://wlplugin.halirutan.de/index.php/blog/7-how-to-use-idea-effectively-with-mathematica-code) on the official website. There, you will learn what features the plug-in provides and how you can use them.
15
15
16
16
For **developers**, the first action is to set up the build-environment to compile the code into an IDEA plug-in. There is a [very detailed how-to](http://wlplugin.halirutan.de/index.php/blog/5-plugin-development-how-to-start) on the official website that explains every step. Additionally, you will find a screen-cast there, where the procedure is shown step by step. The code itself contains java-documentation that is uploaded to [the repository's IO page](http://halirutan.github.io/Mathematica-IntelliJ-Plugin/).
17
17
@@ -21,7 +21,7 @@ Finally, there I have posted information on [stack exchange](http://mathematica.
21
21
- the [first announcement](http://community.wolfram.com/groups/-/m/t/139047?p_p_auth=Lp2pA68y) on the Wolfram Community and a very detailed [new version post](http://community.wolfram.com/groups/-/m/t/353812?p_p_auth=Lp2pA68y)
22
22
23
23
24
-
##![dev image][dev-image] Development 
24
+
##![dev image][dev-image] Development [](https://travis-ci.org/halirutan/Mathematica-IntelliJ-Plugin)
This plugin turns your IntelliJ IDEA into a powerful coding environment for Mathematica. For more information
20
-
check out the <a href="http://mathematicaplugin.halirutan.de">official website</a>.
41
+
check out the <a href="http://mathematicaplugin.halirutan.de">official website</a>. I have started to create user-friendly
42
+
documentation of various features on the <a href="https://github.com/halirutan/Mathematica-IntelliJ-Plugin/wiki">Wiki pages of GitHub</a>.
21
43
If you want to discuss specific topics, then ping me
22
44
(<a href="http://mathematica.stackexchange.com/users/187/halirutan?tab=profile">halirutan</a>) in the dedicated
23
45
<a href="http://chat.stackexchange.com/rooms/8636/intellijidea-plugin-for-mathematica">chat room on stackexchange</a>.
@@ -33,33 +55,25 @@
33
55
<li>Quick documentation lookup for all built-in symbols and operators</li>
34
56
<li>Structured View for package definitions</li>
35
57
<li>Correct display of Mathematica's <a href="https://reference.wolfram.com/language/guide/ListingOfNamedCharacters.html">named characters</a>
36
-
<li>Inspection of missing commas and semicolons
58
+
<li>Inspections for version mismatch of symbols, possible errors through multiplicaton at linebreak, and missing commas and semicolons
37
59
<li>Autocompletion suggestions sorted by importance</li>
38
60
<li>Highlighting and smart inserting of braces, brackets and parenthesis</li>
61
+
<li>Quick navigation between symbol usages with Navigate - Related Symbol</li>
39
62
</ul>
40
63
]]></description>
41
64
42
65
<change-notes>
43
66
<![CDATA[
44
-
<i>New features and bugfixes:</i>
67
+
<i>New features and bug-fixes:</i>
45
68
<br/>
46
69
<ul>
70
+
<li>Improvement of syntax highlighting for full names of symbols inside scoping constructs (<a href="https://github.com/halirutan/Mathematica-IntelliJ-Plugin/issues/52">GH-52</a>)</li>
71
+
<li>Recognize function names in usage messages (<a href="https://github.com/halirutan/Mathematica-IntelliJ-Plugin/issues/58">GH-58</a>)</li>
<li>Fixed smart-completion of Options that stopped working (<a href="https://github.com/halirutan/Mathematica-IntelliJ-Plugin/issues/30">GH-30</a>)</li>
48
74
<li>Fixed some localization constructs and added unicode of the Eth symbol (<a href="https://github.com/halirutan/Mathematica-IntelliJ-Plugin/issues/26">GH-26</a> and <a href="https://github.com/halirutan/Mathematica-IntelliJ-Plugin/issues/27">GH-27</a>)</li>
49
75
<li>Made indentation for Association brackets like the indentation for lists <a href="https://github.com/halirutan/Mathematica-IntelliJ-Plugin/issues/20">(GH-20)</a></li>
50
76
<li>Fixed the renaming engine so that renamed variables can now have context back-ticks</li>
51
-
<li>Fixed bug where an inspection used much CPU <a href="https://github.com/halirutan/Mathematica-IntelliJ-Plugin/issues/19">(GH-19)</a></li>
52
-
<li>Included <-> as operator <a href="https://github.com/halirutan/Mathematica-IntelliJ-Plugin/issues/17">(GH-17)</a></li>
<li>Fixed exception when you press Enter near the end of a file and you have folded many regions.</li>
55
-
<li>Fixed issue that introduced an empty line when Enter is pressed in a function call</li>
56
-
<li>Implemented a feature for expand/shrink selection so that all arguments of a function or list can be selected without the braces</li>
57
-
<li>Completely re-implemented the behavior of the Enter key. This should now insert correct indents on the next line, when Enter is pressed</li>
58
-
<li>Implemented code folding for Module, Block, With <a href="http://halirutan.myjetbrains.com/youtrack/issue/MMAP-69">(MMAP-69)</a></li>
59
-
<li>Implemented correct display for named characters like <code>\[Gamma]</code></li>
60
-
<li>Improved "Fix all missing semicolon feature" to work correctly on large files <a href="http://halirutan.myjetbrains.com/youtrack/issue/MMAP-68">(MMAP-68)</a></li>
61
-
<li>Added Live Template for creating options (opt) <a href="http://halirutan.myjetbrains.com/youtrack/issue/MMAP-71">(MMAP-71)</a></li>
0 commit comments