Park remaining local WIP on main. TUI archived, CLI/kernel edits, glass. Sort later. Broken is fine.

This commit is contained in:
2026-08-24 14:07:23 -05:00
parent f753506416
commit abb26a26ab
278 changed files with 4326 additions and 1067 deletions
+9 -9
View File
@@ -16,22 +16,22 @@ import type {
TextPart,
Config as SdkConfig,
} from "@opencode-ai/sdk/v2"
import type { CliRenderer, KeyEvent, RGBA, Renderable, SlotMode } from "@opentui/core"
import type { Binding, Keymap } from "@opentui/keymap"
import type { CliRenderer, KeyEvent, RGBA, Renderable, SlotMode } from "@neuron-tui/core"
import type { Binding, Keymap } from "@neuron-tui/keymap"
import {
createBindingLookup as createKeymapBindingLookup,
type BindingConfig,
type CreateBindingLookupOptions,
type KeySequenceFormatPart,
type SequenceBindingLike,
} from "@opentui/keymap/extras"
import type { JSX, SolidPlugin } from "@opentui/solid"
} from "@neuron-tui/keymap/extras"
import type { JSX, SolidPlugin } from "@neuron-tui/solid"
import type { Config as PluginConfig, PluginOptions } from "./index.js"
export type { CliRenderer, KeyEvent, Renderable, SlotMode } from "@opentui/core"
export { stringifyKeySequence, stringifyKeyStroke } from "@opentui/keymap"
export type { Binding, KeyLike, KeySequencePart, KeyStringifyInput, StringifyOptions } from "@opentui/keymap"
export { formatCommandBindings, formatKeySequence } from "@opentui/keymap/extras"
export type { CliRenderer, KeyEvent, Renderable, SlotMode } from "@neuron-tui/core"
export { stringifyKeySequence, stringifyKeyStroke } from "@neuron-tui/keymap"
export type { Binding, KeyLike, KeySequencePart, KeyStringifyInput, StringifyOptions } from "@neuron-tui/keymap"
export { formatCommandBindings, formatKeySequence } from "@neuron-tui/keymap/extras"
export type {
BindingConfig,
BindingLookup,
@@ -41,7 +41,7 @@ export type {
FormatKeySequenceOptions,
KeySequenceFormatPart,
SequenceBindingLike,
} from "@opentui/keymap/extras"
} from "@neuron-tui/keymap/extras"
export function createBindingLookup(
config: BindingConfig<Renderable, KeyEvent> | undefined,