-
Notifications
You must be signed in to change notification settings - Fork 827
Add more features to discord app #1806
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
base: main
Are you sure you want to change the base?
Changes from 2 commits
685193b
bc21e61
d890b44
8305da5
6728a3f
8168769
39d6dd6
8f87557
66cc730
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,22 @@ app: discord | |
- | ||
tag(): user.messaging | ||
tag(): user.emoji | ||
tag(): user.navigation | ||
tag(): user.find | ||
|
||
# Messages | ||
# Edit Message: E | ||
# Delete Message: Backspace | ||
# Pin Message: P | ||
# Add Reaction: + | ||
# Reply: R | ||
# Copy Text: CMD+C or Ctrl+C | ||
# Mark Unread: OPT+ENTER | ||
# Focus Text Area: ESC | ||
# Forward Message: F | ||
|
||
# Navigation: Messages | ||
go oldest unread: user.discord_channel_oldest_unread() | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. From the community backlog session — this should probably go into |
||
|
||
# Navigation: QuickSwitcher | ||
{user.discord_destination} [<user.text>]: | ||
|
@@ -18,7 +34,9 @@ current call: user.discord_go_current_call() | |
toggle pins: user.discord_toggle_pins() | ||
toggle inbox: user.discord_toggle_inbox() | ||
toggle (members | member list): user.discord_toggle_members() | ||
toggle (vee see text | voice text): user.discord_toggle_members() | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Have you tried this with |
||
toggle (dee ems | dims): user.discord_toggle_dms() | ||
toggle sound board: user.discord_toggle_soundboard() | ||
pick emoji: user.discord_emoji_picker() | ||
pick (jif | gif | gift): user.discord_gif_picker() | ||
pick sticker: user.discord_sticker_picker() | ||
|
@@ -32,3 +50,8 @@ mark inbox channel read: user.discord_mark_inbox_read() | |
[toggle] (deafen | undeafen): user.discord_deafen() | ||
answer call: user.discord_answer_call() | ||
decline call: user.discord_decline_call() | ||
start call: user.discord_start_call() | ||
(create | join) server: user.discord_create_join_server() | ||
create private group: user.discord_create_private_group() | ||
open support: user.discord_open_support() | ||
start low fie: user.discord_start_lofi() | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. From the community backlog session — I realize we do not have a lot of consistency here (issue on this is incoming) already but with new voice commands we tend to prefer a noun verb syntax. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do you guys have a standard method of deprecating commands? If so, I could deprecate the prior syntax and convert to the new syntax. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yup! See core/deprecations.py and BREAKING_CHANGES.txt. |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -90,8 +90,29 @@ def discord_answer_call(): | |
def discord_decline_call(): | ||
actions.key("esc") | ||
|
||
def discord_start_call(): | ||
actions.key("ctrl-'") | ||
|
||
def discord_go_current_call(): | ||
actions.key("ctrl-shift-alt-v") | ||
|
||
def discord_toggle_dms(): | ||
actions.key("ctrl-alt-right") | ||
|
||
def discord_create_join_server(): | ||
actions.key("ctrl-shift-n") | ||
|
||
def discord_toggle_soundboard(): | ||
actions.key("ctrl-shift-b") | ||
|
||
def discord_create_private_group(): | ||
actions.key("ctrl-shift-t") | ||
|
||
def discord_channel_oldest_unread(): | ||
actions.key("shift-pageup") | ||
|
||
def discord_open_support(): | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Wondering if this should be a more general command to open help rather than something discord specific. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Personally, I'm for it being a general command. However, I'm unsure as to what a clean syntax for that would look like. Help is already taken. It could be Is there a standard way of handling common functionalities between applications that need to be differentiated from talon ones? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sure, you could consider defining a tag for it, or (probably better in this case) implementing it for an entire platform at a time via an action.
|
||
actions.key("ctrl-shift-h") | ||
|
||
def discord_start_lofi(): | ||
actions.key("ctrl-alt-shift-w") |
Uh oh!
There was an error while loading. Please reload this page.