Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
development:vscode:start [2020/07/07 12:58]
kalenpw created
development:vscode:start [2020/07/07 13:10] (current)
kalenpw
Line 1: Line 1:
 ====== VSCode ====== ====== VSCode ======
 +  * [[ .keybindings | Keybindings ]]
 +
  
----- 
  
-===== Keyboard Shortcuts ===== 
-Put these in keybindings.json  
  
-<code json> 
-    /** 
-    Activity bar 
-    */ 
-    { 
-        "key": "cmd+k cmd+e", 
-        "command": "workbench.view.explorer" 
-    }, 
-    { 
-        "key": "cmd+k cmd+g", 
-        "command": "workbench.view.scm" 
-    }, 
-    { 
-        "key": "cmd+k cmd+d", 
-        "command": "workbench.view.debug" 
-    }, 
-    { 
-        "key": "cmd+k cmd+x", 
-        "command": "workbench.extensions.action.showInstalledExtensions" 
-    }, 
-    { 
-        "key": "cmd+k cmd+p", 
-        "command": "workbench.view.extension.project-manager" 
-    }, 
-</code>