diff options
| author | citrons <citrons@mondecitronne.com> | 2025-06-02 14:00:25 -0500 |
|---|---|---|
| committer | citrons <citrons@mondecitronne.com> | 2025-06-02 14:00:56 -0500 |
| commit | 8c4e3c81890f26f056eff7b3344f23fed4c1d970 (patch) | |
| tree | d42009363d4d2f3791f40e46a7208f9aef0d3e55 /client/window/window.go | |
| parent | 407350e321221d6cd438deab5df52464c02198ab (diff) | |
prompt system
Diffstat (limited to 'client/window/window.go')
| -rw-r--r-- | client/window/window.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/client/window/window.go b/client/window/window.go index 5ed9a18..ba72026 100644 --- a/client/window/window.go +++ b/client/window/window.go @@ -10,9 +10,13 @@ type Location interface { } type Window interface { + Prompt Location() Location Kill() Buffer() *buffer.Buffer +} + +type Prompt interface { Input() *tui.TextInput Send(text string) ShowStatusLine() |
