-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to exit app? #65
Comments
Yes, I did not use Ctrl+C or Ctrl+D - termbox demos do not use it as well. Ctrl+C is occupied - it is used to copy EditField text to clipboard. So, I used double Ctrl+Q(that is often GUI app default exit combination). I mentioned it in docs (Introduction part), maybe it is hard to spot at first site. Here is a doc quotation:
|
For a mac, is Cmd+C used to copy text. For a password protected editbox, the Copy text should be disabled for a mac. |
What if I add MacOS standard copy/paste combination to existing ones(Ctrl+C & Ctrl+V are often used in Windows)? In this case, please, provide those combinations. |
Cut - Cmd+X You can use build constraints for darwin at the top of the Go files. On Mac for command line programs, Ctrl+C (Sig Interrupt which usually kills program) and Ctrl+D (EOF - intention to exit) |
what else do you want to know? |
Oh. Sorry. It seems I got it wrong. You did not want to change copy/paste combination. You just wanted to disable copy for password protected fields? Is it correct? In this case I'll fix it tomorrow. |
For mac it should use Cmd+C for copy instead of Ctrl+C. |
If you accept that I proposed in #66 then I close this ticket and that one will be used for both issues |
I ran some of your demos.
I don't know how to exit.
Normally Control+C or Control+D exits app.
The text was updated successfully, but these errors were encountered: