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.
For full LSP support, you need the Axe LSP server (axels) in your system PATH.
This extension contributes the following settings:
axe.lsp.serverPath: Path to the Axe LSP server executableaxe.lsp.trace: Set to 'messages' or 'verbose' to debug LSP communication
use std.io;
def some_function() {
println "Hello, world.";
}
def main() {
some_function();
}
- Added Language Server Protocol support
- Integrated LSP client for code intelligence
- Improved syntax highlighting
- Initial release with syntax highlighting