https://github.com/justintime50/variables-vscode
Syntax highlighting for VARIABLES files.
https://github.com/justintime50/variables-vscode
Last synced: 6 months ago
JSON representation
Syntax highlighting for VARIABLES files.
- Host: GitHub
- URL: https://github.com/justintime50/variables-vscode
- Owner: Justintime50
- License: mit
- Created: 2024-08-16T22:01:07.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-21T20:46:22.000Z (about 1 year ago)
- Last Synced: 2025-03-28T14:40:33.724Z (6 months ago)
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Variables VS Code Extension
The [Variables VS Code Extension](https://marketplace.visualstudio.com/items?itemName=JustinHammond.variables) adds syntax highlighting support to VS Code for `VARIABLES` files.
Variables files may look something like this:
```variables
VARIABLES_VERSION 1ENVVAR int description goes here
# Comments are supported
MY_ENV str? this will help future engineers know what this env var is for
```## Installation
### Marketplace Installation
1. Open VS Code
2. Go to the Extensions menu
3. Search for "Variables"
4. InstallAlternatively, [install directly from this link](https://marketplace.visualstudio.com/items?itemName=JustinHammond.variables).
### Manual Installation
1. Open VS Code
2. Go to the Extensions menu
3. Select 3 dots in the menu bar, select `Install from VSIX`
4. Select available VSIX file (extension packaged up) or build from source (see [Development](#development)) belowIf you need a screenshot of this, checkout
## Development
```shell
# Install the `vsce` tool
npm install -g @vscode/vsce# Package the extension
vsce package# Release the extension (pre-releases must have different versions than GA releases)
vsce publish --pre-release
vsce publish
```## Attribution
[Variable icons created by Flipicon - Flaticon](https://www.flaticon.com/free-icons/variable)