A Visual Studio Code extension that enables clickable links in XML files for custom package URLs.
- Makes package URLs in XML files clickable
- Automatically opens the corresponding theme.xml files
- Supports the format:
$(package:packageName/path)
- Works with XML files in your workspace
Example:
<defaultTheme url="$(package:mediaclip-hub-dev/tests)/themes/full-size-photo" />
Clicking on this URL will open tests/themes/full-size-photo/theme.xml
in your workspace.
- Download the
.vsix
file from the releases - In VS Code, press
Ctrl+Shift+P
(Windows/Linux) orCmd+Shift+P
(Mac) - Type "Install from VSIX" and select the downloaded file
- Clone this repository
- Run
npm install
- Run
npm run package
to create the VSIX file - Install using the steps above
- Open any XML file in VS Code
- URLs matching the pattern
$(package:packageName/path)
will be automatically converted to clickable links - Click the link to open the corresponding xml file
# Install dependencies
npm install
# Compile
npm run compile
# Watch for changes
npm run watch
# Create VSIX package
npm run vsix
- Visual Studio Code version 1.60.0 or higher