Skip to content

Latest commit

 

History

History
executable file
·
39 lines (28 loc) · 718 Bytes

vscode.md

File metadata and controls

executable file
·
39 lines (28 loc) · 718 Bytes

Shortcuts

CTRL + p - Search files.
CTRL + Shift + p - Commands.

CTRL + d - Select duplicate values.

ALT + Up or Down - Move line up or down.

ALT + SHIFT + Down - Duplicate line.
ALT + SHIFT + Right - Select everything between brackets.

Indentation

Go to settings CTRL + , and set:

  • Workbench > Tree: indent = 25
  • Workbench > Tree: Render Indent Guides = always

Zen Coding

table.table.small>thead>tr>th*4

results in

<table class="table small">
    <thead>
        <tr>
            <th></th>
            <th></th>
            <th></th>
            <th></th>
        </tr>
    </thead>
</table>