Skip to content

Commit 0f23cc5

Browse files
author
Caspar Gruijthuijsen
committed
removed terminal ';' from run commands
1 parent 7047469 commit 0f23cc5

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

AutoMatlab.sublime-commands

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
{
2424
"caption": "AutoMatlab: Run file",
2525
"command": "run_matlab_command",
26-
"args": {"command": "$package_member;"},
26+
"args": {"command": "$package_member"},
2727
},
2828
{
2929
"caption": "AutoMatlab: Change folder",
@@ -33,7 +33,7 @@
3333
{
3434
"caption": "AutoMatlab: Change folder and run file",
3535
"command": "run_matlab_command",
36-
"args": {"command": "cd '$package_parent'; $package_member;"},
36+
"args": {"command": "cd '$package_parent'; $package_member"},
3737
},
3838
{
3939
"caption": "AutoMatlab: Run selection",

Default (Windows).sublime-keymap

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
{
2121
"keys": ["ctrl+b"],
2222
"command": "run_matlab_command",
23-
"args": {"command": "$package_member;"},
23+
"args": {"command": "$package_member"},
2424
"context":
2525
[
2626
{ "key": "selector", "operator": "equal", "operand": "source.matlab" },
@@ -31,7 +31,7 @@
3131
{
3232
"keys": ["ctrl+b"],
3333
"command": "run_matlab_command",
34-
"args": {"command": "$selection;"},
34+
"args": {"command": "$selection"},
3535
"context":
3636
[
3737
{ "key": "selector", "operator": "equal", "operand": "source.matlab" },
@@ -42,7 +42,7 @@
4242
{
4343
"keys": ["ctrl+shift+b"],
4444
"command": "run_matlab_command",
45-
"args": {"command": "cd '$package_parent'; $package_member;"},
45+
"args": {"command": "cd '$package_parent'; $package_member"},
4646
"context":
4747
[
4848
{ "key": "selector", "operator": "equal", "operand": "source.matlab" },

0 commit comments

Comments
 (0)