An open API service indexing awesome lists of open source software.

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

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