Skip to content

Commit

Permalink
Add note
Browse files Browse the repository at this point in the history
  • Loading branch information
derekmbrown committed Nov 20, 2024
1 parent dd8ebe9 commit b7d954b
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions src/pages/notes/custom-shortcuts-in-vscode.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
layout: '../../layouts/Note.astro'
title: 'Custom Shortcuts In VS Code'
pubDate: 11-20-2024
tags: ['note', 'vscode']
---

A list of my custom shortcuts in VS Code I use everyday.

```json
[
{
"key": "shift+cmd+a",
"command": "extension.multiCommand.execute",
"args": {
"sequence": [
"workbench.scm.focus",
"list.focusFirst",
"list.select"
]
},
"when": "editorTextFocus"
},
{
"key": "ctrl+tab",
"command": "workbench.action.nextEditor"
},
{
"key": "ctrl+shift+tab",
"command": "workbench.action.previousEditor"
},
]
```

0 comments on commit b7d954b

Please sign in to comment.