sufumi/JYN/docs
JYNIn devTauri · React · Rust

Jyntaxe / docs

Fullscreen, keyboard-first code editor.

01

Overview

Jyntaxe is a lightweight fullscreen code editor designed for keyboard-driven workflows. It keeps the UI minimal so your code stays front and center.

InfoCurrently tested and supported on Windows only.
02

Features

  • Command palette with fuzzy search.
  • Quick open (Ctrl+P) across the current folder.
  • Open file/folder dialogs and multi-file tabs.
  • Toast notifications for saves and errors.
  • Persistent session state across restarts.
03

Requirements

  • Node.js 18+
  • Rust stable toolchain
  • Tauri CLI prerequisites (including WebView2 on Windows)
  • Tailwind CSS CLI (via PostCSS in the build)
04

Installation

Download installer

Downloads disabledCurrently in early development with a focus on core features and stability. Will enable downloads once it's ready for wider testing.

Run the installer, then launch Jyntaxe from the Start menu or desktop shortcut.

Build from source

bash
git clone https://github.com/JasnRathore/jyntaxe cd jyntaxe
bash
npm install
bash
npm run tauri build
05

Development

bash
npm run tauri dev
InfoOpening a new window (Ctrl+Shift+N) does not work in dev mode; it relies on the compiled binary path.
06

Production Build

bash
npm run tauri build

Installers and executables are output to src-tauri/target/release/bundle/.

07

Keybindings

ActionKeybinding
Command paletteCtrl + Shift + P
Open fileCtrl + O
Open folderCtrl + K → O
New fileCtrl + N
SaveCtrl + S
Close fileCtrl + W
Quick openCtrl + P
Switch file (prev)Alt + ,
Switch file (next)Alt + .
New windowCtrl + Shift + N
Close applicationCtrl + Q
Found an error? Docs are open source.Edit on GitHub