Skip to content

Latest commit

 

History

History
52 lines (42 loc) · 1.77 KB

vsd.md

File metadata and controls

52 lines (42 loc) · 1.77 KB

Visual Studio Code

Shortcuts

  • ctrl + shift + = align assignement (avec l'extension Better Align)
  • ctrl + d selects next occurrence of word under cursor or of the current selection
  • ctrl + pagedown next tab
  • ctrl + pageup previous tab
  • ctrl + F2 select all occurence of selected word
  • ctrl + shift + v preview markdown

Tutos

Extensions

  • Alignemment de code : Better Align (wwm.better-align)
  • Sass intellisence (auto complétion / refacto) : SCSS IntelliSense (mrmlnc.vscode-scss)

Terminaux

Pour avoir le choix du terminal, intaller l'extension Shell Launcher https://marketplace.visualstudio.com/items?itemName=Tyriar.shell-launcher

Configuration User settings :

 "shellLauncher.shells.windows": [
        {
            "shell": "C:\\WINDOWS\\system32\\cmd.exe",
            "label": "cmd"
        },
        {
            "shell": "C:\\Windows\\SysWOW64\\WindowsPowerShell\\v1.0\\powershell.exe",
            "label": "PowerShell"
        },
        {
            "shell": "C:\\Program Files\\Git\\bin\\bash.exe",
            "label": "Git bash"
        },

    ]

Configuration Key binding

 {
    "key": "ctrl+shift+t",
    "command": "shellLauncher.launch"
}

Usage : ctrl+shift+t