https://github.com/95jonpet/kickstart-language-support
Support for Kickstart files in VS Code
https://github.com/95jonpet/kickstart-language-support
kickstart vscode vscode-extension
Last synced: 10 months ago
JSON representation
Support for Kickstart files in VS Code
- Host: GitHub
- URL: https://github.com/95jonpet/kickstart-language-support
- Owner: 95jonpet
- License: mit
- Created: 2023-07-26T20:36:01.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-04T17:33:45.000Z (over 2 years ago)
- Last Synced: 2025-01-20T19:38:25.550Z (12 months ago)
- Topics: kickstart, vscode, vscode-extension
- Language: TypeScript
- Homepage: https://marketplace.visualstudio.com/items?itemName=peterjonsson.kickstart-language-support
- Size: 278 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README

# Kickstart Language Support
Support for Kickstart (`.ks`) files in Visual Studio Code
## Features
This extension adds the following features to Visual Studio Code:
- Syntax highlighting for `.ks` files.
- Linting for `.ks` files using `ksvalidator`.
- Completion support for `.ks` files.
- Snippets for commonly used sections in `.ks` files.
## Linter install
The `ksvalidator` linter can typically be installed using `dnf` or `yum` on RHEL-based distributions of Linux:
```bash
dnf install pykickstart
```
**Note:** The package may be called something different depending on distribution and repo.
For other Linux distributions, [pykickstart](https://pypi.org/project/pykickstart/) can be installed using Python 3 and `pip`:
```bash
python3 -m pip install pykickstart
```