v0.1.0 initial commit

This commit is contained in:
2026-07-12 18:41:05 -04:00
commit aa22225c61
69 changed files with 10971 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
//go:build wasm
package terminal
// DetectColorMode determines terminal color capability from environment
func DetectColorMode() ColorMode {
// Browsers/xterm.js generally support true color
return ColorModeTrueColor
}
// resetTerminalMode is no-op for WASM; termios does not exist
func resetTerminalMode() {}