Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>REOX LanguageNew to Visual Studio Code? Get it now.
REOX Language

REOX Language

ketiveeai

|
3 installs
| (0) | Free
Syntax highlighting, snippets, and theme for REOX - the modern UI framework language for NeolyxOS
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

REOX Language Support

Version Installs

REOX is a modern, declarative UI framework language designed for NeolyxOS. Think SwiftUI simplicity with systems programming power.

📖 Language Documentation | 🌐 KetiveeAI

Features

  • 🎨 Syntax Highlighting - Full support for .reox files
  • 🌙 REOX Dark Theme - Beautiful dark theme optimized for REOX
  • ⚡ Code Snippets - 20+ snippets for rapid development
  • 🔧 Smart Editing - Auto-closing brackets, comment toggling

Syntax Preview

panel Calculator {
    title: "Calculator"
    size: (400, 300)
    
    @Bind result: string = "0"
    
    vstack(gap: 12) {
        text(result)
            .font_size(32)
            .color(0xFFFFFF)
        
        hstack(gap: 8) {
            button("7").on_click(action { append("7") })
            button("8").on_click(action { append("8") })
            button("9").on_click(action { append("9") })
        }
    }
}

Color Highlighting

Element Color
Keywords (fn, let, if) Purple
Types (int, string, Color) Cyan
UI Functions (vstack, button) Teal
Animation Functions Purple Italic
Color Functions Pink
Strings Green
Numbers Orange

Snippets

Prefix Description
main Main function
fn Function declaration
panel Window panel
layer UI layer component
vstack Vertical stack
hstack Horizontal stack
button Button with handler
app Full app boilerplate
card Card component

Installation

VS Code Marketplace

Search for "REOX Language" in VS Code extensions.

Manual Install

code --install-extension reox-language-1.0.0.vsix

REOX Language

REOX combines:

  • Declarative UI - SwiftUI-inspired component system
  • Type Safety - Strong static typing
  • Zero Dependencies - Compiles to optimized C
  • NeolyxOS Native - Direct GPU acceleration

Learn more at reox.ketivee.com

Requirements

  • VS Code 1.60.0 or higher
  • No additional dependencies

Release Notes

1.0.0

  • Initial release
  • Syntax highlighting for .reox files
  • REOX Dark theme
  • 20+ code snippets

KetiveeAI • Made with ♥ for NeolyxOS

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2026 Microsoft