User Tools

Site Tools


visual_studio_code

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
visual_studio_code [2019/02/14 07:54] – [Keyboard Shortcuts] stephenvisual_studio_code [2023/11/03 05:47] (current) – external edit 127.0.0.1
Line 5: Line 5:
 <code js> <code js>
 { {
-    "editor.fontFamily": "'Fira Code', Consolas, 'Courier New', monospace", 
-    "editor.renderWhitespace": "all", 
-    "editor.fontSize": 12, 
-    "editor.cursorStyle": "line-thin", 
-    "window.zoomLevel": 0, 
     "cSpell.language": "en-GB",     "cSpell.language": "en-GB",
-    "editor.fontLigatures": true+    "cSpell.userWords":
 +        "heise" 
 +    ], 
 +    "diffEditor.renderSideBySide": true, 
 +    "diffEditor.ignoreTrimWhitespace": false, 
 +    "editor.fontFamily": "'FiraCode Nerd Font', 'Fira Code', Consolas, 'Courier New', monospace", 
 +    "editor.fontLigatures": true
 +    "editor.fontSize": 12, 
 +    "editor.renderWhitespace": "all", 
 +    "editor.showFoldingControls": "always", 
 +    "editor.bracketPairColorization.enabled": true, 
 +    "emmet.includeLanguages":
 +        "razor": "html", 
 +        "aspnetcorerazor": "html" 
 +    }, 
 +    "powershell.promptToUpdatePowerShell": false, 
 +    "security.workspace.trust.untrustedFiles": "open", 
 +    "terminal.integrated.profiles.windows":
 +        "PowerShell 7": { 
 +            "path": "pwsh.exe" 
 +        } 
 +    }, 
 +    "terminal.integrated.defaultProfile.windows": "PowerShell 7", 
 +    "terminal.integrated.fontSize": 12, 
 +    "workbench.editor.pinnedTabSizing": "shrink", 
 +    "workbench.editor.pinnedTabsOnSeparateRow": true, 
 +    "workbench.tree.indent": 14, 
 +        "files.associations":
 +        "*.gpx": "xml", 
 +        "*.umap": "json" 
 +    }, 
 +    "workbench.colorCustomizations":
 +        "tab.lastPinnedBorder": "#ffffff88", 
 +        "tab.activeBorderTop": "#ff0000" 
 +    }, 
 +    // Custom settings: =>
 } }
 +</code>
 +==== Project Settings ====
 +
 +  - Settings cog -> Settings.
 +  - Workspace Settings.
 +  - 'Edit in settings.json' or {} (top left).
 +
 +<code javascript>
 +{
 + "workbench.colorCustomizations": {
 + "statusBar.background": "#00aaaa" // Stuff
 + //"statusBar.background": "#0000aa" // Dev
 + //"statusBar.background": "#aa0000" // (Spare)
 + //"statusBar.background": "#aa00aa" // (Spare)
 + //"statusBar.background": "#aaaa00" // (Spare)
 + //"statusBar.background": "#00aa00" // (Spare)
 + }
 +}
 +</code>
 +
 +or
 +
 +<code javascript>
 + "settings": {
 + "workbench.colorTheme": "Solarized Dark",
 + "workbench.colorCustomizations": {
 + "statusBar.foreground": "#fff",
 +
 + //"statusBar.background": "#00aa00" // (Spare)
 + //"statusBar.background": "#aa0000" // (Spare)
 + //"statusBar.background": "#0000aa" // Bookmarks / Bin
 + //"statusBar.background": "#00aaaa" // Local Repo
 + //"statusBar.background": "#aa00aa" // (Spare)
 + //"statusBar.background": "#aaaa00" // (Spare)
 + }
 </code> </code>
  
 ===== Keyboard Shortcuts ===== ===== Keyboard Shortcuts =====
 +
 +==== Favourites ====
 +
 +| Ctrl + 0 | Focus to Side Bar. |
 +| Ctrl + 1 | Focus to first editor group. |
 +| Ctrl + 2 | Focus to second editor group. |
 +| Ctrl + B | Toggle Side Bar visibility. |
 +| Ctrl + Alt + K | Toggle Bookmark. |
 +| Ctrl + Shift + Alt + K | Toggle labeled Bookmark. |
 +| Ctrl + ` | Toggle Terminal. |
 +| Ctrl + K, Z | Toggle Zen Mode. |
 +| Ctrl + Win + F11 (Visual Studio) | Open file in Visual Studio Code. |
 +
 +==== Customs ====
  
 <code js> <code js>
Line 26: Line 105:
     {     {
         "key": "ctrl+shift+alt+k",         "key": "ctrl+shift+alt+k",
-        "command": "bookmarks.toggleLabeled"+        "command": "bookmarks.toggleLabeled", 
 +        "when": "editorTextFocus"
     },     },
     {     {
Line 37: Line 117:
         "command": "workbench.action.terminal.focusPrevious",         "command": "workbench.action.terminal.focusPrevious",
         "when": "terminalFocus"         "when": "terminalFocus"
 +    },
 +    {
 +        "key": "ctrl+shift+i",
 +        "command": "editor.emmet.action.wrapWithAbbreviation",
 +        "when": "editorTextFocus"
 +    },
 +    {
 +        "key": "ctrl+m ctrl+p",
 +        "command": "workbench.files.action.collapseExplorerFolders"
 +    },
 +    {
 +        "key": "ctrl+alt+c",
 +        "command": "git.checkout"
     }     }
-] +]</code>
-</code>+
  
 ===== Extensions ===== ===== Extensions =====
  
-| Align | steve8708.align |+<del>Align</del> <del>steve8708.align</del>
 +| Cursor Align | yo1dog.cursor-align |
 | AutoHotkey | slevesque.vscode-autohotkey | | AutoHotkey | slevesque.vscode-autohotkey |
 | Bookmarks | alefragnani.bookmarks | | Bookmarks | alefragnani.bookmarks |
 | C# | ms-vscode.csharp | | C# | ms-vscode.csharp |
 | Code Spell Checker | streetsidesoftware.code-spell-checker | | Code Spell Checker | streetsidesoftware.code-spell-checker |
 +| Git History | donjayamanne.githistory |
 | Markdown All in One | yzhang.markdown-all-in-one | | Markdown All in One | yzhang.markdown-all-in-one |
 | Markdown PDF | yzane.markdown-pdf | | Markdown PDF | yzane.markdown-pdf |
Line 53: Line 147:
 | Prettify JSON | mohsen1.prettify-json | | Prettify JSON | mohsen1.prettify-json |
 | Razor+ | austincummings.razor-plus | | Razor+ | austincummings.razor-plus |
-| SQL Server (mssql) | ms-mssql.mssql | +<del>SQL Server (mssql)</del> <del>ms-mssql.mssql</del> 
-| Visual Studio Team Services | ms-vsts.team | +<del>Visual Studio Team Services</del> <del>ms-vsts.team</del> 
-| vscode-icons | robertohuertasm.vscode-icons |+<del>vscode-icons</del> <del>robertohuertasm.vscode-icons</del> |
 | XML Tools | dotjoshjohnson.xml | | XML Tools | dotjoshjohnson.xml |
 +| Version Lens | pflannery.vscode-versionlens |
 +| Bracket Pair Colorizer 2 | coenraads.bracket-pair-colorizer-2 |
  
visual_studio_code.1550130862.txt.gz · Last modified: 2019/02/15 08:54 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki