Skip to content

Tags: fzdwx/view

Tags

v0.1.0-pre.40

Toggle v0.1.0-pre.40's commit message
feat: add project tree directory actions

v0.1.0-pre.39

Toggle v0.1.0-pre.39's commit message
feat: add find usages panel and conflict actions

v0.1.0-pre.38

Toggle v0.1.0-pre.38's commit message
feat: add editor symbol reference search

v0.1.0-pre.37

Toggle v0.1.0-pre.37's commit message
fix: align terminal cell rendering

v0.1.0-pre.36

Toggle v0.1.0-pre.36's commit message
fix: allow rail panels to fill the workbench

v0.1.0-pre.35

Toggle v0.1.0-pre.35's commit message
fix: remove NO_COLOR env var from spawned terminal shells

The host process may have NO_COLOR set, which disables colored output
in terminal tools (cargo, npm, etc.). Remove it from the child shell
environment so programs render with their default color schemes.

v0.1.0-pre.34

Toggle v0.1.0-pre.34's commit message
fix: support copying files from project tree

v0.1.0-pre.33

Toggle v0.1.0-pre.33's commit message
fix: paste copied files from Wayland clipboards

v0.1.0-pre.32

Toggle v0.1.0-pre.32's commit message
feat: run project scripts from file tree context menu

Add a 'Run…' option to the file tree context menu that auto-detects
available scripts from project config files and executes them in the
built-in terminal.

Auto-detection supports:
- package.json (npm/yarn/pnpm scripts, auto-detects package manager
  via lock files)
- Cargo.toml (build, run, test, check, clippy, fmt, doc)
- Makefile (parsed make targets)
- deno.json/deno.jsonc (deno tasks)
- go.mod (run, build, test, fmt, vet, mod tidy)

Flow:
1. Right-click in file tree → 'Run…'
2. Backend scans project root for config files
3. Detected scripts shown in a picker overlay
4. Select a script → new terminal tab created with command sent
   automatically once the PTY WebSocket is open

v0.1.0-pre.31

Toggle v0.1.0-pre.31's commit message
feat: add Alt+1 shortcut to focus file tree panel

Adds openFileTree shortcut (Alt+1) to settings, shortcut handler,
and settings page rows.