-
Notifications
You must be signed in to change notification settings - Fork 608
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
Disabling arrow keys for empty lines. #82
Comments
This will be handled by the new edition mode. We'll close this issue after confirming that the new edition mode effectively fixes this. Relates to: #60 |
Is there any update to |
I've been working on other projects during the last months, but I plan to resume gocui's development soon. Sorry for this inactivity period. |
@jroimartin Not to be pushy or anything, but is there an ETA? I have a few projects that are on hold until this is fixed. |
Possibly related, but I noticed (at least in the OS X terminal app) scrolling causes ASCII codes like Edit: I ended up disabling mouse events, which somewhat fixes the issue. |
@jroimartin Interesting, thanks. Is there a way to just disable mouse scrolling altogether? |
Fixed via 75a7ad2. Could you check? :) |
BTW you can use |
When using a text editor, it's customary that using the
down
orright
arrow keys have no effect when we're at the end of the text and there's no more characters after the cursor. Theenter
key is then used to insert a new line.In an input box created with
v.Editable = true
, the cursor keys can be used indefinitely to create newlines (see_examples/mask.go
). Since we're still pre-v1.0.0
, I think this is a safe change to make.The text was updated successfully, but these errors were encountered: