Increase the power of AVAP TM Dev Studio through Extensions The features that AVAP TM Dev Studio includes out-of-the-box are just the start. AVAP TM Dev Studio extensions let you add languages, debuggers, and tools to your installation to support your development workflow. AVAP TM Dev Studio's rich extensibility model lets extension authors plug directly into the AVAP TM Dev Studio UI and contribute functionality through the same APIs used by AVAP TM Dev Studio. This article explains how to find, install, and manage AVAP TM Dev Studio extensions from the AVAP TM Dev Studio Marketplace. ## Browse for extensions You can browse and install extensions from within AVAP TM Dev Studio. Bring up the Extensions view by clicking on the Extensions icon in the Activity Bar on the side of AVAP TM Dev Studio or the View: Extensions command (Ctrl+Shift+X). This will show you a list of the most popular AVAP TM Dev Studio extensions on the AVAP TM Dev Studio Marketplace. Each extension in the list includes a brief description, the publisher, the download count, and a five star rating. You can select the extension item to display the extension's details page where you can learn more. Note: If your computer's Internet access goes through a proxy server, you will need to configure the proxy server. See Proxy server support for details. ## Install an extension To install an extension, select the Install button. Once the installation is complete, the Install button will change to the Manage gear button. ### Find and install an extension For example, let's install the popular TODO Highlight extension. This extension highlights text like 'TODO:' and 'FIXME:' in your source code so you can quickly find undone sections. In the Extensions view ( `Ctrl+Shift+X` ), type 'todo' in the search box to filter the Marketplace offerings to extensions with 'todo' in the title or metadata. You should see the TODO Highlight extension in the list. An extension is uniquely identified by its publisher and extension IDs. If you select the TODO Highlight extension, you will see the Extension details page, where you can find the extension ID, in this case, wayou.vscode-todo-highlight. Knowing the extension ID can be helpful if there are several similarly named extensions. Select the Install button, and AVAP TM Dev Studio will download and install the extension from the Marketplace. When the installation is complete, the Install button will be replaced with a Manage gear button. To see the TODO Highlight extension in action, open any source code file and add the text 'TODO:' and you will see the text highlighted. The TODO Highlight extension contributes the commands,{' '} TODO-Highlight: List highlighted annotations and{' '} TODO-Highlight: Toggle highlight , that you can find in the Command Palette (Ctrl+Shift+P). The{' '} TODO-Highlight: Toggle highlight command lets you quickly disable or enable highlighting. The extension also provides settings for tuning its behavior, which you can find in the Settings editor (Ctrl+,). For example, you might want the text search to be case insensitive and you can uncheck the{' '} Todohighlight: Is Case Sensitive setting. If an extension doesn't provide the functionality you want, you can always Uninstall the extension from the{' '} Manage button context menu. This has been just one example of how to install and use an extension. The AVAP TM Dev Studio Marketplace has thousands of extensions supporting hundreds of programming languages and tasks. Everything from full featured language support for [Java], [Python], [Go], and [C++] to simple extensions that [create GUIDs], change the [color theme], or add [virtual pets] to the editor. ### Extension details On the extension details page, you can read the extension's README and review the extension's: * Feature Contributions - The extension's additions to AVAP TM Dev Studio such as settings, commands and keyboard shortcuts, language grammars, debugger, etc. * Changelog - The extension repository CHANGELOG if available. * Dependencies - Lists if the extension depends on any other extensions. If an extension is an Extension Pack, the Extension Pack {' '} section will display which extensions will be installed when you install the pack.{' '} Extension Packs {' '} bundle separate extensions together so they can be easily installed at one time. ### Extensions view filter and commands You can filter the Extensions view with the{' '} Filter Extensions context menu. There are filters to show: * The list of outdated extensions that can be updated * The list of currently enabled/disabled extensions * The list of recommended extensions based on your workspace * The list of globally popular extensions You can sort the extension list by Install Count ,{' '} Rating , Name ,{' '} Published Date , or Updated Date in either ascending or descending order. You can learn more about extension search filters below . You can run additional Extensions view commands via the ...{' '} View and More Actions button. Through this context menu you can control extension updates, enable or disable all extensions, and use the{' '} Extension Bisect {' '} utility to isolate problematic extension behavior. ### Search for an extension You can clear the Search box at the top of the Extensions view and type in the name of the extension, tool, or programming language you're looking for. For example, typing 'python' will bring up a list of Python language extensions: If you know the exact identifier for an extension you're looking for, you can use the @id: prefix, for example @id:vue.volar. Additionally, to filter or sort results, you can use the{' '} filter and{' '} sort commands, detailed below. ## Manage extensions AVAP TM Dev Studio makes it easy to manage your extensions. You can install, disable, update, and uninstall extensions through the Extensions view, the Command Palette (commands have the Extensions: prefix) or command-line switches. ### List installed extensions By default, the Extensions view will show the extensions you currently have installed, and all extensions that are recommended for you. You can use the Extensions: Focus on Installed View command, available in the Command Palette (Ctrl+Shift+P) or in the More Actions (...) dropdown menu >{' '} Views > Installed , to clear any text in the search box and show the list of all installed extensions, which includes those that have been disabled. ### Uninstall an extension To uninstall an extension, select the Manage gear button at the right of an extension entry and then choose{' '} Uninstall from the dropdown menu. This will uninstall the extension and prompt you to reload AVAP TM Dev Studio. ### Disable an extension If you don't want to permanently remove an extension, you can instead temporarily disable the extension by clicking the gear button at the right of an extension entry. You can disable an extension globally or just for your current Workspace. You will be prompted to reload AVAP TM {' '} Dev Studio after you disable an extension. If you want to quickly disable all installed extensions, there is a{' '} Disable All Installed Extensions command in the{' '} Command Palette and More Actions {' '} (...) dropdown menu. Extensions remain disabled for all AVAP TM Dev Studio sessions until you re-enable them. ### Enable an extension Similarly if you have disabled an extension (it will be in the{' '} Disabled section of the list and marked{' '} Disabled ), you can re-enable it with the Enable or{' '} Enable (Workspace) commands in the dropdown menu. There is also an Enable All Extensions command in the{' '} More Actions (...) dropdown menu. ### Extension auto-update AVAP TM Dev Studio checks for extension updates and installs them automatically. After an update, you will be prompted to reload AVAP TM Dev Studio. If you'd rather update your extensions manually, you can disable auto-update with the{' '} Disable Auto Updating Extensions command that sets the extensions.autoUpdate setting to false. If you don't want AVAP TM Dev Studio to even check for updates, you can set the extensions.autoCheckUpdates setting to false. ### Update an extension manually If you have extensions auto-update disabled, you can quickly look for extension updates by using the Show Outdated Extensions {' '} command that uses the @updates filter. This will display any available updates for your currently installed extensions. Select the Update button for the outdated extension. The update will be installed, and you'll be prompted to reload AVAP TM Dev Studio. You can also update all your outdated extensions at one time with the Update All Extensions command. If you also have automatic checking for updates disabled, you can use the{' '} Check for Extension Updates command to check which of your extensions can be updated. ## Recommended extensions You can see a list of recommended extensions using{' '} Show Recommended Extensions , which sets the @recommended{' '} filter . Extension recommendations can either be: * Workspace Recommendations - Recommended by other users of your current workspace. * Other Recommendations - Recommended based on recently opened files. See the section below to learn how to{' '} contribute {' '} recommendations for other users in your project. ### Ignoring recommendations To dismiss a recommendation, select on the extension item to open the Details page and then select the Manage gear button to display the context menu. Select the{' '} Ignore Recommendation menu item. Ignored recommendations will no longer be recommended to you. ## Configuring extensions AVAP TM Dev Studio extensions may have very different configurations and requirements. Some extensions contribute settings to AVAP TM Dev Studio, which can be modified in the Settings editor. Other extensions may have their own configuration files. Extensions may also require installation and setup of additional components like compilers, debuggers, and command-line tools. Consult the extension's README (visible in the Extensions view details page) or go to the extension page on the AVAP TM Dev Studio Marketplace (click on the extension name in the details page). Many extensions are open source and have a link to their repository on their Marketplace page. ## Command line extension management To make it easier to automate and configure AVAP TM Dev Studio, it is possible to list, install, and uninstall extensions from the command line. When identifying an extension, provide the full name of the form publisher.extension, for example ms-python.python. Example: ```javascript code --extensions-dir