A list of currently installed Visual Studio Code extensions, grouped by category.
NOTE: The latest addition to this list is Settings Sync which should hopefully supersede this list, it may never be updated again.
| [ | |
| // Vanilla bindings | |
| { | |
| "key": "ctrl+o", | |
| "command": "workbench.action.gotoSymbol" | |
| }, | |
| { | |
| "key": "ctrl+[", | |
| "command": "workbench.action.navigateBack" | |
| }, |
| <?xml version="1.0" encoding="utf-8"?> | |
| <CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> | |
| <CodeSnippet Format="1.0.0"> | |
| <Header> | |
| <SnippetTypes> | |
| <SnippetType>Expansion</SnippetType> | |
| </SnippetTypes> | |
| <Title>JS script tag</Title> | |
| <Author>Jeff Andrews</Author> | |
| <Description>Inserts HTML script tag of type text/javascript</Description> |
| <?xml version="1.0" encoding="utf-8"?> | |
| <CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> | |
| <CodeSnippet Format="1.0.0"> | |
| <Header> | |
| <SnippetTypes> | |
| <SnippetType>Expansion</SnippetType> | |
| </SnippetTypes> | |
| <Title>Jasmine Test</Title> | |
| <Author>Jeff Andrews</Author> | |
| <Description>Creates an 'it' block with a name, and basic comments</Description> |
| <?xml version="1.0" encoding="utf-8"?> | |
| <CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> | |
| <CodeSnippet Format="1.0.0"> | |
| <Header> | |
| <SnippetTypes> | |
| <SnippetType>Expansion</SnippetType> | |
| </SnippetTypes> | |
| <Title>Angular Factory</Title> | |
| <Author>Jeff Andrews</Author> | |
| <Description>Creates an angular factory with reference to a module</Description> |
| <?xml version="1.0" encoding="utf-8"?> | |
| <CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> | |
| <CodeSnippet Format="1.0.0"> | |
| <Header> | |
| <SnippetTypes> | |
| <SnippetType>Expansion</SnippetType> | |
| </SnippetTypes> | |
| <Title>Angular Controller</Title> | |
| <Author>Jeff Andrews</Author> | |
| <Description>Creates an angular controller with reference to a module and adds a route</Description> |
| <?xml version="1.0" encoding="utf-8"?> | |
| <CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> | |
| <CodeSnippet Format="1.0.0"> | |
| <Header> | |
| <SnippetTypes> | |
| <SnippetType>Expansion</SnippetType> | |
| </SnippetTypes> | |
| <Title>Object Function Property</Title> | |
| <Author>Jeff Andrews</Author> | |
| <Description>Creates a named function on an object</Description> |
| console.clear(); | |
| var seasons = []; | |
| function createSeason(seasonNumber) { | |
| seasons[seasonNumber] = seasons[seasonNumber] || []; | |
| return seasons[seasonNumber]; | |
| } |
A list of currently installed Visual Studio Code extensions, grouped by category.
NOTE: The latest addition to this list is Settings Sync which should hopefully supersede this list, it may never be updated again.
| # Enable mouse mode (tmux 2.1 and above) | |
| set -g mouse on | |
| # remap prefix from ctrl+b to alt+z | |
| unbind C-b | |
| set-option -g prefix M-z | |
| bind-key M-z send-prefix | |
| # split panes using \ and - | |
| bind \ split-window -h -c "#{pane_current_path}" |