newChippablePrompt returns a realistically-sized promptInput. Width matters: cursor navigation walks the wrapped grid; height is irrelevant here.
()
| 11 | // newChippablePrompt returns a realistically-sized promptInput. Width matters: |
| 12 | // cursor navigation walks the wrapped grid; height is irrelevant here. |
| 13 | func newChippablePrompt() promptInput { |
| 14 | p := newPromptInput() |
| 15 | p.SetWidth(80) |
| 16 | p.SetHeight(20) |
| 17 | return p |
| 18 | } |
| 19 | |
| 20 | // pasteKey builds the bracketed-paste KeyMsg bubbletea emits on paste. |
| 21 | // Paste=true is the flag Update keys off of. |
no test coverage detected