Skip to content

Commit 6b9af6a

Browse files
authored
Merge pull request #11 from mpourmpoulis/develop-0.1.0
Remove some of my own customizations I accidentally left in the Official version 0.1.1
2 parents b3cacb8 + 4a58f5e commit 6b9af6a

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727

2828
- the repair module now supports correcting cases where the return keyword is followed by invalid code
2929

30+
- changes in the code for the sublime grammar communication on the grammar side, issues with escaping characters and occasionally losing focus have been lifted via RunCommand ( custom solution 0.5.11 )
3031

3132

3233

bundles/Caster/python_voice_coding_plugin_caster_v1-0-0.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#########################################################################################
1919

2020
local_settings = {
21-
"show_command":True,
21+
"show_command":False,
2222
"force_rpc":False,
2323
}
2424

@@ -235,8 +235,7 @@ class PythonVoiceCodingPluginRule(MappingRule):
235235
Choice("big_roi",{
236236

237237
"if condition" : "if condition",
238-
"iffae" : "if condition",
239-
"LFA" : "else if condition",
238+
"else if condition" : "else if condition",
240239
"while condition" : "while condition",
241240
"with item" : "with clause",
242241

@@ -278,7 +277,6 @@ class PythonVoiceCodingPluginRule(MappingRule):
278277
"iterable" : "iterable",
279278

280279
"function name": "definition name",
281-
"F name": "definition name",
282280
"function parameter": "definition parameter",
283281
"parameter list": "definition parameter list",
284282
"default value": "default value",

0 commit comments

Comments
 (0)