Skip to content

Commit 6ef7160

Browse files
committed
Pushed version
1 parent 6c287fd commit 6ef7160

3 files changed

Lines changed: 30 additions & 2 deletions

File tree

resources/META-INF/plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<id>de.halirutan.mathematica</id>
2424
<name>Mathematica Support</name>
2525
<category>Custom Language</category>
26-
<version>2.0.16</version>
26+
<version>2.0.17</version>
2727
<idea-version since-build="163"/>
2828
<vendor email="patrick@halirutan.de" url="http://mathematicaplugin.halirutan.de">Patrick Scheibe</vendor>
2929
<depends>com.intellij.modules.lang</depends>
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<!--
2+
~ Copyright (c) 2017 Patrick Scheibe
3+
~ Permission is hereby granted, free of charge, to any person obtaining a copy
4+
~ of this software and associated documentation files (the "Software"), to deal
5+
~ in the Software without restriction, including without limitation the rights
6+
~ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
~ copies of the Software, and to permit persons to whom the Software is
8+
~ furnished to do so, subject to the following conditions:
9+
~
10+
~ The above copyright notice and this permission notice shall be included in
11+
~ all copies or substantial portions of the Software.
12+
~
13+
~ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
~ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
~ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
~ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
~ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
~ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19+
~ THE SOFTWARE.
20+
-->
21+
22+
<html>
23+
<body>
24+
Moves a variable to Module/Block/Width declaration
25+
<!-- tooltip end -->
26+
</body>
27+
</html>

src/de/halirutan/mathematica/intentions/localization/MoveVariableToLocalisation.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016 Patrick Scheibe
2+
* Copyright (c) 2017 Patrick Scheibe
33
* Permission is hereby granted, free of charge, to any person obtaining a copy
44
* of this software and associated documentation files (the "Software"), to deal
55
* in the Software without restriction, including without limitation the rights
@@ -40,6 +40,7 @@
4040
import org.jetbrains.annotations.Nullable;
4141

4242
/**
43+
* Provides the insertion of unlocalised variables into a Module/Block/With declaration list
4344
* @author patrick (27.12.16).
4445
*/
4546
public class MoveVariableToLocalisation implements IntentionAction {

0 commit comments

Comments
 (0)