https://github.com/mkacct/vscode-cdif
VS Code language support extension for cDIF
https://github.com/mkacct/vscode-cdif
cdif data-interchange data-serialization structured-data vscode vscode-extension
Last synced: 22 days ago
JSON representation
VS Code language support extension for cDIF
- Host: GitHub
- URL: https://github.com/mkacct/vscode-cdif
- Owner: mkacct
- License: mit
- Created: 2025-04-07T05:34:33.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-11-11T00:58:33.000Z (7 months ago)
- Last Synced: 2025-11-11T02:32:29.745Z (7 months ago)
- Topics: cdif, data-interchange, data-serialization, structured-data, vscode, vscode-extension
- Homepage: https://marketplace.visualstudio.com/items?itemName=mkps.cdif
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# cDIF extension for VS Code
This extension provides support (syntax highlighting and snippets) for the [cDIF](https://github.com/mkacct/cdif/blob/main/spec.md) language. cDIF is a textual data interchange format for representing configurations and other structured data.
This extension is up to date with cDIF version 1.0.2.
## Icons
The provided default file icons ([dark](res/cbnf-seti-dark.svg) and [light](res/cbnf-seti-light.svg)) are intended to fit VS Code's default Seti file icon theme. If you're using [vscode-icons](https://marketplace.visualstudio.com/items?itemName=vscode-icons-team.vscode-icons) (or a different file icon theme that supports custom icons), you may be interested in the [logo icon](res/cdif-icon.svg).
If you're using the [Material Icon Theme](https://marketplace.visualstudio.com/items?itemName=PKief.material-icon-theme), I recommend simply using the following custom icon clone. Add the following object to the `material-icon-theme.languages.customClones` array in your VS Code settings:
```json
{
"name": "cdif",
"ids": ["cdif"],
"base": "json",
"color": "#ff4081"
}
```