Skip to content
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

Don't use not mode #1515

Merged
merged 6 commits into from
Aug 3, 2024
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions BREAKING_CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ applied given the delay between changes being submitted and the time they were r
and merged.

---
* 2024-07-31 Remove commands `"command mode"`, `"dictation mode"` from custom user modes. Note that if you have any custom modes where you want these commands you could add that mode to the context of `command_and_dictation_mode.talon` or copying the command to one of your custom files.
* 2024-07-28 Removed the following actions in favor of the new action/modifier grammar.
https://github.com/talonhub/community/blob/37a8ebde90c8120a0b52555030988d4f54e65159/core/edit/edit.talon#L3
cut_word, copy_word, paste_word
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
not mode: sleep
mode: command
mode: dictation
nriley marked this conversation as resolved.
Show resolved Hide resolved
-
^dictation mode$:
mode.disable("sleep")
Expand Down
3 changes: 1 addition & 2 deletions core/modes/modes_dragon.talon
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
mode: sleep
not mode: sleep
mode: all
speech.engine: dragon
-
# The optional <phrase> afterwards allows these to match even if you say arbitrary text
Expand Down
3 changes: 2 additions & 1 deletion core/modes/modes_not_dragon.talon
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
mode: command
mode: dictation
mode: sleep
not mode: sleep
not speech.engine: dragon
-
# The optional <phrase> afterwards allows these to match even if you say arbitrary text
Expand Down