32 lines
1.0 KiB
Markdown
32 lines
1.0 KiB
Markdown
# XLang README
|
|
|
|
## Features
|
|
|
|
- **Syntax Highlighting**: Full syntax highlighting support for XLang language
|
|
- **Keywords**: Highlighting for control flow keywords (if, else, return, var, exit)
|
|
- **Comments**: Support for single-line (//) and block (/* */) comments
|
|
- **Strings**: Double-quoted string highlighting with escape sequence support
|
|
- **Operators**: Highlighting for arithmetic operators (+, -, *, /)
|
|
- **Brackets**: Highlighting for parentheses (), square brackets [], and curly braces {}
|
|
- **Variables**: Highlighting for variable declarations and usage
|
|
- **Auto-closing Pairs**: Auto-completion for brackets, quotes, and parentheses
|
|
|
|
## Language Support
|
|
|
|
Syntax highlighting for files with `.x` extension.
|
|
|
|
## Release Notes
|
|
|
|
### 0.0.2
|
|
|
|
- Added operator highlighting
|
|
- Added variable highlighting (declarations with `var` and usage)
|
|
- Added bracket/parenthesis highlighting
|
|
- Fixed comment highlighting (both line and block comments)
|
|
- Added BSD-3-Clause license
|
|
|
|
### 0.0.1
|
|
|
|
- Initial release with basic keyword and string highlighting
|
|
|