Table of Contents

New Developers Working Group

VSCode

Useful extensions

Settings and Configuration

If your server runs Linux and you get an error about the number of files in the workspace, you may need to adjust the inotify file watch limit.

To exclude compiler files from file search results, add **/.angular to the patterns that are excluded from search.

File Associations and Syntax Highlighting

To make VSCode show the correct syntax highlighting for Template Toolkit files, edit your settings.json file to set files.associations as the following:

"files.associations": {
        "*.tt2": "html",
        "*.css.tt2": "css"
    },

*.js.tt2 files are best displayed as HTML.

HTML in VSCode

VSCode supports Emmet syntax in new files, which can be very helpful for creating quick mockups.

With Emmet, you can quickly wrap a selection in an HTML tag. Press Ctrl-Shift-P to bring up the command palette, then type 'wrap' and press Enter. You will be prompted for the tag you want to wrap your selection with. If Wrap is your most recent command, you will be able to use it again without typing the word 'wrap'; you can just press Ctrl-Shift-P and then Enter when you see 'Emmet:Wrap' highlighted.

Git in VSCode

See the tools page for other editors and development tools.