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

ctrlEnterSend: use cmd+enter on macOS #2502

Closed
wants to merge 1 commit into from
Closed

Conversation

lumap
Copy link
Contributor

@lumap lumap commented May 24, 2024

On macOS, the ctrl key is generally used as a secondary alt key for shortcuts. The cmd (⌘) key is the "main" modifier key, the equivalent of ctrl on windows/linux.

On macOS, the ctrl key is generally used as a secondary alt key for shortcuts. The cmd (⌘) key is the "main" modifier key, the equivalent of ctrl on windows/linux.
@@ -54,7 +54,7 @@ export default definePlugin({
result = event.shiftKey;
break;
case "ctrl+enter":
result = event.ctrlKey;
result = process.platform === "darwin" ? event.metaKey : event.ctrlKey;
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we're in the browser not nodejs

Vendicated added a commit that referenced this pull request May 26, 2024
- FriendsSince: Don't show for friend requests
- FakeNitro: Fix attempting to bypass unicode emojis #2503
- MessageLatency: ignore bots #2504
- CtrlEnterSend: use cmd+enter on macOS #2502
- ReplaceGoogleSearch: trim LF character #2488

Co-authored-by: AutumnVN <autumnvnchino@gmail.com>
Co-authored-by: rushiiMachine <33725716+rushiiMachine@users.noreply.github.com>
Co-authored-by: Lumap <lumap@duck.com>
Co-authored-by: Mylloon <kennel.anri@tutanota.com>
@Vendicated
Copy link
Owner

Thanks! Pushed via c836270

@Vendicated Vendicated closed this May 26, 2024
@lumap lumap deleted the patch-1 branch May 26, 2024 22:50
ImLvna pushed a commit to ImLvna/Vencord that referenced this pull request May 27, 2024
- FriendsSince: Don't show for friend requests
- FakeNitro: Fix attempting to bypass unicode emojis Vendicated#2503
- MessageLatency: ignore bots Vendicated#2504
- CtrlEnterSend: use cmd+enter on macOS Vendicated#2502
- ReplaceGoogleSearch: trim LF character Vendicated#2488

Co-authored-by: AutumnVN <autumnvnchino@gmail.com>
Co-authored-by: rushiiMachine <33725716+rushiiMachine@users.noreply.github.com>
Co-authored-by: Lumap <lumap@duck.com>
Co-authored-by: Mylloon <kennel.anri@tutanota.com>
LunaisLazier pushed a commit to LunaisLazier/Mooncord that referenced this pull request Jun 6, 2024
- FriendsSince: Don't show for friend requests
- FakeNitro: Fix attempting to bypass unicode emojis Vendicated#2503
- MessageLatency: ignore bots Vendicated#2504
- CtrlEnterSend: use cmd+enter on macOS Vendicated#2502
- ReplaceGoogleSearch: trim LF character Vendicated#2488

Co-authored-by: AutumnVN <autumnvnchino@gmail.com>
Co-authored-by: rushiiMachine <33725716+rushiiMachine@users.noreply.github.com>
Co-authored-by: Lumap <lumap@duck.com>
Co-authored-by: Mylloon <kennel.anri@tutanota.com>
Autumnlight02 pushed a commit to Autumnlight02/Vencord that referenced this pull request Jun 19, 2024
- FriendsSince: Don't show for friend requests
- FakeNitro: Fix attempting to bypass unicode emojis Vendicated#2503
- MessageLatency: ignore bots Vendicated#2504
- CtrlEnterSend: use cmd+enter on macOS Vendicated#2502
- ReplaceGoogleSearch: trim LF character Vendicated#2488

Co-authored-by: AutumnVN <autumnvnchino@gmail.com>
Co-authored-by: rushiiMachine <33725716+rushiiMachine@users.noreply.github.com>
Co-authored-by: Lumap <lumap@duck.com>
Co-authored-by: Mylloon <kennel.anri@tutanota.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants