You can email me directly if you want to make contact:
wave...@gmail.com
Justin
Thank you
Hello Alex, I'm in a very similar position to you as I am also getting started on VS code. Maybe we can share notes as we go along?
You can email me directly if you want to make contact:
Justin
--
You received this message because you are subscribed to the Google Groups "Dragonfly Speech Recognition" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dragonflyspee...@googlegroups.com.
To post to this group, send email to dragonf...@googlegroups.com.
Visit this group at https://groups.google.com/group/dragonflyspeech.
To view this discussion on the web visit https://groups.google.com/d/msgid/dragonflyspeech/33ff8e75-ef30-4f51-bdc5-6c1f1bac1e52%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To view this discussion on the web visit https://groups.google.com/d/msgid/dragonflyspeech/b8c66e21-e51e-46e8-bba6-9fd11c0d78c7%40googlegroups.com.
I am another Visual Studio code user. I also recommend looking up the extensive list of hotkeys and binding what is useful to you to a voice command. I have mostly just copied the multiedit.py example and replaced it with my own commands for each new rule I want to make, including my rule for Visual Studio code.I wanted to add that for git usage, I make use of the integrated terminal (there is a hotkey to bring this terminal up) and then I have voice commands that run the commands for git that I need from that terminal.I am on Windows, I use git-bash from the git-scm installation for Windows as my terminal in Visual Studio code. It may be possible to run the git commands from the default power shell terminal as well, I'm just more familiar with bash.-Ryan
On Mon, Mar 4, 2019 at 9:22 PM Caspar <caspar....@gmail.com261> wrote:
--Hey Justin, there's no mention of the word "languages" in my gist, so I'm afraid I can't really help you there (though to repeat what I said in my first message, I don't suggest trying to use it as-is, but rather as an inspiration for things worth binding to commands).That error sounds like a generic Python error rather than a Dragonfly error, so chat or stackoverflow might be a better place to seek help than this list? In general, people in the Dragonfly Gitter are pretty helpful (you can sometimes catch me online there) in case it does happen to be a Dragonfly issue.
On Monday, 4 March 2019 08:37:06 UTC-8, Justin Hall wrote:Hi Caspar, I'm trying out the vscode.py file you referred to but I'm getting an error due to a missing module "languages". I tried to pip install "languages" but there is no such module and it's not clear which I need to import, do you know which it is?Thank you
You received this message because you are subscribed to the Google Groups "Dragonfly Speech Recognition" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dragonflyspee...@googlegroups.com262.
To post to this group, send email to dragonf...@googlegroups.com263.
Visit this group at https://groups.google.com/group/dragonflyspeech264.
To view this discussion on the web visit https://groups.google.com/d/msgid/dragonflyspeech/33ff8e75-ef30-4f51-bdc5-6c1f1bac1e52%40googlegroups.com265.
For more options, visit https://groups.google.com/d/optout266.
Git lens is a solid extension, but ultimately I would recommend every would-be-serious git user learn the git CLI once they've gotten past the initial hurdle of learning git. Tig252 is a nice terminal-based UI which works well with voice control (mostly driven by single character commands, which you could map to voice commands). Going the other direction is sourcetree253, which a lot of people like and recommend, but I'm not a user so not sure how voice-friendly it is. Personally I have voice commands mapped to common terminal Git commands directly ( https://gist.github.com/caspark/8befa498978b1240a25382db20710735254 ) and then it's easy enough to speak any necessary flags afterwards myself (I use `git add patch` a lot to stage hunks interactively for example).
- CasparOn Thursday, 7 March 2019 19:58:41 UTC-8, Alex Boche wrote:
260There is a VS code plug-in called git lens. Would you recommend using that or activating git within the VS code terminal?
On Tuesday, March 5, 2019 at 10:43:54 AM UTC-8, Ryan Richter wrote:
I am another Visual Studio code user. I also recommend looking up the extensive list of hotkeys and binding what is useful to you to a voice command. I have mostly just copied the multiedit.py example and replaced it with my own commands for each new rule I want to make, including my rule for Visual Studio code.I wanted to add that for git usage, I make use of the integrated terminal (there is a hotkey to bring this terminal up) and then I have voice commands that run the commands for git that I need from that terminal.I am on Windows, I use git-bash from the git-scm installation for Windows as my terminal in Visual Studio code. It may be possible to run the git commands from the default power shell terminal as well, I'm just more familiar with bash.-Ryan
On Mon, Mar 4, 2019 at 9:22 PM Caspar <caspar....@gmail.com261255> wrote:
--Hey Justin, there's no mention of the word "languages" in my gist, so I'm afraid I can't really help you there (though to repeat what I said in my first message, I don't suggest trying to use it as-is, but rather as an inspiration for things worth binding to commands).That error sounds like a generic Python error rather than a Dragonfly error, so chat or stackoverflow might be a better place to seek help than this list? In general, people in the Dragonfly Gitter are pretty helpful (you can sometimes catch me online there) in case it does happen to be a Dragonfly issue.
On Monday, 4 March 2019 08:37:06 UTC-8, Justin Hall wrote:Hi Caspar, I'm trying out the vscode.py file you referred to but I'm getting an error due to a missing module "languages". I tried to pip install "languages" but there is no such module and it's not clear which I need to import, do you know which it is?Thank you
You received this message because you are subscribed to the Google Groups "Dragonfly Speech Recognition" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dragonflyspee...@googlegroups.com262256.
To post to this group, send email to dragonf...@googlegroups.com263257.
Visit this group at https://groups.google.com/group/dragonflyspeech264258.
To view this discussion on the web visit https://groups.google.com/d/msgid/dragonflyspeech/33ff8e75-ef30-4f51-bdc5-6c1f1bac1e52%40googlegroups.com265259.
For more options, visit https://groups.google.com/d/optout266260.
If you ever get deeply into this, one idea would be to write a visual code plug-in that lets you get the line number. Then you can do mod line number commands, which I have found to be very useful. (Mark L. did some of these for Vocola and WinPad32, and I ended up writing a plug-in for sublime text that would do this). For example you can say things like yank 22 through 45, and outward copy lines from 222-245 for example if your screen happens to be scrolled to have those in visible range.I looked at writing a plug-in for Visual Studio code but it's all based on node and JS, and it was more work than I was willing to invest at the time.Another suggestion is to make use of the regex goto commands ie ctrl-P. I have a number of equivalents in sublime text for which I can just say "goto myfile.py", and that will automatically ctrl-P + whatever dictation (or whatever specific list of files I have). That makes navigation across files go very quickly by voice.
On Friday, March 1, 2019 at 3:16:45 AM UTC-8, Alex Boche wrote:
180Does anyone have a good set of commands for Visual Studio code that I could use? I'm using caster and they don't have that many commands for VS code though they do have some (https://paste.gg/p/anonymous/c8a1376a1a4848228344c914396a38e6329) – caster is more focused on other editors, but I think I'd like to stick with VS code for now if that seems reasonable to people. I am interested in any commands people have for VS code, but a couple specific things that come to mind are commands for integrating with git and commands for moving lines around e.g. take lines number blank through blank and move them to line blank. My background: I am just learning to program and to use dragonfly. Thank you very much.
--
You received this message because you are subscribed to a topic in the Google Groups "Dragonfly Speech Recognition" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/dragonflyspeech/F2fRAmd9C-8/unsubscribe.
To unsubscribe from this group and all its topics, send an email to dragonflyspee...@googlegroups.com.
To post to this group, send email to dragonf...@googlegroups.com.
Visit this group at https://groups.google.com/group/dragonflyspeech.
To view this discussion on the web visit https://groups.google.com/d/msgid/dragonflyspeech/d6fa4236-8988-4f21-b615-e9565c131539%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Just for future reference this is probably the place to start. Visible ranges looks like the first key piece of information
On Mon, Mar 11, 2019, 8:44 PM Alex Boche <akb...@gmail.com325> wrote:
That was 150 not 150,257
On Monday, March 11, 2019 at 8:39:35 PM UTC-7, Alex Boche wrote:
328I will pay 150257 US dollars for anyone to write me such a plug-in as the one that Alexander is describing. Sounds like this will be mostly independent of whether using vocola or dragonfly or anything else, but to the extent that it is dependent on that I would like it to be written in dragonfly rather than vocola ideally, since you cannot change commands across 2 different command utilities. I don't totally understand Casper's suggestions but I would probably be willing to pay a bit for those 2 if somebody could implement them for me. If you're interested please email me akb...@gmail.com326. Thanks
On Monday, March 11, 2019 at 4:15:17 PM UTC-7, alexander15w wrote:
If you ever get deeply into this, one idea would be to write a visual code plug-in that lets you get the line number. Then you can do mod line number commands, which I have found to be very useful. (Mark L. did some of these for Vocola and WinPad32, and I ended up writing a plug-in for sublime text that would do this). For example you can say things like yank 22 through 45, and outward copy lines from 222-245 for example if your screen happens to be scrolled to have those in visible range.I looked at writing a plug-in for Visual Studio code but it's all based on node and JS, and it was more work than I was willing to invest at the time.Another suggestion is to make use of the regex goto commands ie ctrl-P. I have a number of equivalents in sublime text for which I can just say "goto myfile.py", and that will automatically ctrl-P + whatever dictation (or whatever specific list of files I have). That makes navigation across files go very quickly by voice.
On Friday, March 1, 2019 at 3:16:45 AM UTC-8, Alex Boche wrote:
180Does anyone have a good set of commands for Visual Studio code that I could use? I'm using caster and they don't have that many commands for VS code though they do have some (https://paste.gg/p/anonymous/c8a1376a1a4848228344c914396a38e6329327) – caster is more focused on other editors, but I think I'd like to stick with VS code for now if that seems reasonable to people. I am interested in any commands people have for VS code, but a couple specific things that come to mind are commands for integrating with git and commands for moving lines around e.g. take lines number blank through blank and move them to line blank. My background: I am just learning to program and to use dragonfly. Thank you very much.
--
You received this message because you are subscribed to a topic in the Google Groups "Dragonfly Speech Recognition" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/dragonflyspeech/F2fRAmd9C-8/unsubscribe328.
To unsubscribe from this group and all its topics, send an email to dragonflyspee...@googlegroups.com329.
To post to this group, send email to dragonf...@googlegroups.com330.
Visit this group at https://groups.google.com/group/dragonflyspeech331.
To view this discussion on the web visit https://groups.google.com/d/msgid/dragonflyspeech/d6fa4236-8988-4f21-b615-e9565c131539%40googlegroups.com332.
For more options, visit https://groups.google.com/d/optout333.