diff options
-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 } |