mirror of
https://github.com/rivo/tview.git
synced 2026-04-26 21:35:54 +03:00
[GH-ISSUE #176] inputfield: unable to enter : (colon) #141
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/tview#141
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @joegrasse on GitHub (Oct 29, 2018).
Original GitHub issue: https://github.com/rivo/tview/issues/176
After the
990bc2ebcfcommit to allow navigation in input fileds, I can no longer enter a colon. I have traced it down to the code starting here.I changed it to the following and it works again.
I suspect the : (colon) key has a modifier in windows.
@rivo commented on GitHub (Oct 29, 2018):
Thanks for letting me know. I couldn't replicate this on my Mac but I made a change that will hopefully fix this for you. If it still doesn't work, let me know.
@joegrasse commented on GitHub (Oct 29, 2018):
That didn't seem to fix it. What fixed it for me after your latest change was adding the following here.
@joegrasse commented on GitHub (Oct 30, 2018):
@rivo I just created pull request #177 to fix this.
@rivo commented on GitHub (Nov 5, 2018):
It looks like the problem is not the Alt key but some other modifier. So I opted for a slightly different solution. Let me know if it works for you now.
@joegrasse commented on GitHub (Nov 5, 2018):
Yes, it works. Thank you.