Skip to content

Commit

Permalink
fix: remove default shortcuts collision
Browse files Browse the repository at this point in the history
  • Loading branch information
fcasal committed Apr 19, 2024
1 parent cb6fd75 commit 6d01f58
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,13 +130,13 @@ Each background color is customizable via the VSCode settings page. Write as #RG

#### Keybindings

You can configure the keybindings to any of the extension's commands in the VSCode settings. The most common commands are:
You can configure the keybindings to any of the extension's commands in the VSCode settings. The default shortcuts are:

- `weAudit.addFinding`: Add Selected Code To Findings: `cmd + j`
- `weAudit.addNote`: Add Selected Code To Notes: `cmd + k`
- `weAudit.toggleAudited`: Mark Current File As Reviewed: `cmd + 7`
- `weAudit.addFinding`: Add Selected Code To Findings: `cmd + 3`
- `weAudit.addNote`: Add Selected Code To Notes: `cmd + 4`
- `weAudit.deleteLocationUnderCursor`: Delete Finding Under Cursor: `cmd + 5`
- `weAudit.editEntryUnderCursor`: Edit Finding Under Cursor: `cmd + 6`
- `weAudit.toggleAudited`: Mark Current File As Reviewed: `cmd + 7`
- Copy Permalink (for the Selected Code Region): `cmd + 8`

## WeAudit Concepts
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -200,13 +200,13 @@
},
{
"command": "weAudit.addFinding",
"key": "ctrl+alt+j",
"mac": "cmd+j"
"key": "ctrl+alt+3",
"mac": "cmd+3"
},
{
"command": "weAudit.addNote",
"key": "ctrl+alt+k",
"mac": "cmd+k"
"key": "ctrl+alt+4",
"mac": "cmd+4"
},
{
"command": "weAudit.editEntryUnderCursor",
Expand Down

0 comments on commit 6d01f58

Please sign in to comment.