diff options
author | Grail Finder <wohilas@gmail.com> | 2024-12-16 21:08:39 +0300 |
---|---|---|
committer | Grail Finder <wohilas@gmail.com> | 2024-12-16 21:08:39 +0300 |
commit | 923c96b73d02a5725a6b94d6052b2399b6f2def8 (patch) | |
tree | e916e2d139e643d0081ab686587aa8a3cfb3802c | |
parent | f367ad266ad48a544f23c34e80cb6d28f8a8c9cf (diff) |
Enha: pastefix
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | main.go | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -5,3 +5,4 @@ elefant history/ *.db config.toml +sysprompts/*.png @@ -26,7 +26,7 @@ func isASCII(s string) bool { func main() { pages.AddPage("main", flex, true, true) if err := app.SetRoot(pages, - true).EnableMouse(true).Run(); err != nil { + true).EnableMouse(true).EnablePaste(true).Run(); err != nil { logger.Error("failed to start tview app", "error", err) return } |