-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there any way to have a rule to match any single word? #154
Comments
If not, i might hack something up using http://www.mieliestronk.com/corncob_lowercase.txt |
Yeah, this would be a nice feature. Let me know if you find something
…On Jan 20, 2018 9:04 PM, "Dylan Chong" ***@***.***> wrote:
If not, i might hack something up using http://www.mieliestronk.com/
corncob_lowercase.txt
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#154 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AVM5uzBnlvoAgqSOIIxyTa4Rk4rsd0hbks5tMsVxgaJpZM4RlsE1>
.
|
I don't know a way to do this with Natlink/Dragonfly. IME, Dictation will match all words from when it starts until a pause, and there's no way to make it less eager. If you can get away with a small set of things rather than general purpose dictation, there are options, but that file you link is huge; I wonder how well Dragon could handle it. |
Ill assume it won't be worth the effort trying to use that massive file because i found a better solution My problem is that i have to pause lots after doing a wildcard The only annoying thing is i don't want to end the Dictation when i'm writing some text. I might say: |
The way Caster tackles this problem is by specifying an optional word/sound
at the end of the spec for dictation.
https://github.com/synkarius/caster/blob/master/caster/lib/ccr/core/nav.py#L149
…On Tue, Feb 20, 2018 at 11:25 PM, Dylan Chong ***@***.***> wrote:
Ill assume it won't be worth the effort trying to use that massive file
because i found a better solution
to my specific problem
My problem is that i have to pause lots after doing a wildcard Dictation.
My (incorrect) assumption was that you had to stop talking after a
Dictation. It turns out that dragon lets the wildcard end if it expects and
you say some command afterwards. e.g. I can say backtick Proper dictation
backtick to type \Dictation`` (where Proper is the wildcard).
The only annoying thing is i don't want to end the Dictation when i'm
writing some text. I might say: Sentence The first word in the nato
alphabet is alpha and dragon will type it out as The first word in the
nato alphabet isa. I'm not sure on a good way to solve this problem other
than using different trigger words for the wildcard...
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#154 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ALpedVjY0SbTS2hnAOWGlrAnr0jOAuvmks5tW8T2gaJpZM4RlsE1>
.
|
Ah yes i was considering that idea. I'll certainly try it out, although it may have an impact on speed. Then again it might be worth it. I'll give it a go and let you know how it works out |
If i want to say
printf
, then if i have a grammar that usesDictation()
somewhere in it, then i will have to pause after sayingprint
, then sayfoxtrot
.Is there any way i can get the Dictation to match only a single word, so i can say this without any pauses:
word print foxtrot
to type outprintf
?The text was updated successfully, but these errors were encountered: