Tags: fzdwx/view
Tags
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.
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
PreviousNext