The Visual Studio Code Launcher extension enhances your development workflow by providing a convenient launch action for files that match specific patterns. This allows you to quickly launch files directly from the editor.
Once installed, you can configure the file patterns in your settings to specify which files should have the launch action available. Use the command palette or editor toolbar to execute the launch action on the selected file.
To configure the Visual Studio Code Launcher extension, you can modify the settings in your settings.json file. Here are the available settings:
launcher.mappings: An array ofname-patternmappings to specify which files should have whichlaunch.jsonconfiguration action available. Example:Note:"launcher.mappings": [ { "name": "Test", "pattern": "\\.test\\." } ]
Testis the name of the configuration defined inlaunch.json, andpatternis the regular expression to match.
Contributions are welcome! If you have suggestions for improvements or new features, feel free to open an issue or submit a pull request on the project's GitHub repository.