https://github.com/axelang/axe-vscode
VSCode extension for Axe
https://github.com/axelang/axe-vscode
language-support vscode-extension
Last synced: about 1 month ago
JSON representation
VSCode extension for Axe
- Host: GitHub
- URL: https://github.com/axelang/axe-vscode
- Owner: axelang
- License: gpl-3.0
- Created: 2025-11-30T16:39:57.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2025-12-20T23:26:07.000Z (5 months ago)
- Last Synced: 2025-12-22T21:37:04.104Z (5 months ago)
- Topics: language-support, vscode-extension
- Language: JavaScript
- Homepage:
- Size: 71.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Axe Programming Language
Axe is a statically typed, compiled programming language that centred around ease of concurrency and memory safety. It is designed to be simple and easy to learn.
## Requirements
For full LSP support, you need the Axe LSP server (`axels`) in your system PATH.
## Extension Settings
This extension contributes the following settings:
* `axe.lsp.serverPath`: Path to the Axe LSP server executable
* `axe.lsp.trace`: Set to 'messages' or 'verbose' to debug LSP communication
## Example
```axe
use std.io;
def some_function() {
println "Hello, world.";
}
def main() {
some_function();
}
```
## Release Notes
### 0.0.10
- Added Language Server Protocol support
- Integrated LSP client for code intelligence
- Improved syntax highlighting
### 0.0.9
- Initial release with syntax highlighting