Skip to content

Commit 200b505

Browse files
committed
Removing varies debugging stuff and bump plug-in version
1 parent 3cb4002 commit 200b505

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

python_voice_coding_plugin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from PythonVoiceCodingPlugin.interface.interface import Interface
1212

1313

14-
PLUGIN_VERSION = (0,1,0)
14+
PLUGIN_VERSION = (0,1,1)
1515

1616
settings = {}
1717
already_message = False
@@ -28,7 +28,7 @@ def run(self, edit,arg):
2828
if "grammar_version" not in arg and not already_message:
2929
sublime.error_message("You are using main plug-in version >=0.1.0 with a grammar <= 0.0.5." +
3030
"They are not compatible." +
31-
"You can find the new newest version of the grammar along with instructions to install it" +
31+
"You can find the new newest version of the grammar along with instructions to install it\n" +
3232
" Under Preferences > Package Settings > PythonVoiceCodingPlugin"
3333

3434
)

queries/abstract/insertion_query.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def __call__(self,view_information,query_description,extra = {}):
5353
if self.select_insertion:
5454
m = ModificationHandler()
5555
for location,t in self.writing_locations_text:
56-
print(" inside the loop ", location,t,"\n")
56+
# print(" inside the loop ", location,t,"\n")
5757
m.modify_from(0, location, t)
5858
self.optional_selection = [m.forward(x[0]) for x in self.writing_locations_text]
5959
return self.writing_locations_text,self.optional_selection

queries/select_part.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class SelectPart(SelectionQuery):
1919

2020

2121
def handle_single(self,view_information,query_description,extra = {}):
22-
print(" inside here selection where he parked ")
22+
# print(" inside here selection where he parked ")
2323
selection = self._get_selection(view_information,extra)
2424
build = self.general_build if self.general_build else line_partial(selection[0])
2525
if not build or not build[0] :
@@ -31,8 +31,8 @@ def handle_single(self,view_information,query_description,extra = {}):
3131
return None,None
3232
second_origin = origin
3333
if "nth" in query_description:
34-
print(" hello world ")
35-
print(translate_adjective[query_description["nth"]])
34+
# print(" hello world ")
35+
# print(translate_adjective[query_description["nth"]])
3636
second_origin = get_sub_index(origin,translate_adjective[query_description["nth"]]-1)
3737

3838
if query_description["format"]==1:

0 commit comments

Comments
 (0)