From 7364f26b6253d08a7ea80e1f10846026fe835d00 Mon Sep 17 00:00:00 2001 From: Federico <38290480+FedeIlLeone@users.noreply.github.com> Date: Fri, 2 Feb 2024 22:31:42 +0100 Subject: [PATCH] feat: add missing mac keybinds --- docs/contributing/guide.md | 4 ++-- docs/contributing/replugged.md | 8 ++++---- docs/plugins/getting-started.md | 5 +++-- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/docs/contributing/guide.md b/docs/contributing/guide.md index a723769..0e8de94 100644 --- a/docs/contributing/guide.md +++ b/docs/contributing/guide.md @@ -72,8 +72,8 @@ to check for spelling errors. If you use VSCode, this is also set up in the reco along with Prettier and ESLint and should show you spelling errors as you type. These will also be checked when you run `pnpm run lint:fix`. If there is a word that cSpell says is an error but is not, you can add it to [cspell.json](https://github.com/replugged-org/guide/tree/main/cspell.json). -In VSCode, you can do this from the Quick Actions menu (Ctrl+.) or in the right-click menu (under -"Spelling"). +In VSCode, you can do this from the Quick Actions menu (Ctrl + . or +Cmd + .) or in the right-click menu (under "Spelling"). When creating a PR, these should be checked automatically by GitHub Actions and will fail if there are formatting errors. If you are a first-time contributor, these might not run until we get to it, diff --git a/docs/contributing/replugged.md b/docs/contributing/replugged.md index c0c0b47..b54bc95 100644 --- a/docs/contributing/replugged.md +++ b/docs/contributing/replugged.md @@ -65,8 +65,8 @@ Please make sure you have the following installed and are using the correct vers When you make changes, you can run `pnpm run build` to build the changes, or use `pnpm run watch` to automatically rebuild when you edit a file. If you edited a file in the `renderer` folder, you can -reload Discord with Ctrl + R to apply your changes. However, editing files in -`main` requires you to fully quit and restart Discord. +reload Discord with Ctrl + R or Cmd + R to apply your +changes. However, editing files in `main` requires you to fully quit and restart Discord. ### Formatting @@ -80,8 +80,8 @@ to check for spelling errors. If you use VSCode, this is also set up in the reco along with Prettier and ESLint and should show you spelling errors as you type. These will also be checked when you run `pnpm run lint:fix`. If there is a word that cSpell says is an error but is not, you can add it to [cspell.json](https://github.com/replugged-org/guide/tree/main/cspell.json). -In VSCode, you can do this from the Quick Actions menu (Ctrl+.) or in the right-click menu (under -"Spelling"). +In VSCode, you can do this from the Quick Actions menu (Ctrl + . or +Cmd + .) or in the right-click menu (under "Spelling"). When creating a PR, these should be checked automatically by GitHub Actions and will fail if there are formatting errors. If you are a first-time contributor, these might not run until we get to it, diff --git a/docs/plugins/getting-started.md b/docs/plugins/getting-started.md index 39bc785..9b4c0d1 100644 --- a/docs/plugins/getting-started.md +++ b/docs/plugins/getting-started.md @@ -94,8 +94,9 @@ After it's initially installed, the watch/build scripts will automatically reloa Discord when you make changes. If you don't want it to do this, you can use the `--no-reload` flag with your command to disable it. -Some plugins will require you to fully reload Discord (Ctrl + R) to apply -changes, for example if you are using plaintext patches (we will go over that later). +Some plugins will require you to fully reload Discord (Ctrl + R or +Cmd + R) to apply changes, for example if you are using plaintext patches (we +will go over that later). ## Building, updating, and releasing