-
Notifications
You must be signed in to change notification settings - Fork 3
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
Fix most annoying part of #8 #17
Conversation
Backspace works now on my system. I can't think of a good reason for us to be defining our own KEY_BS rather than using ncurses' KEY_BACKSPACE - so let's stop doing that!
https://stackoverflow.com/questions/27200597/c-ncurses-key-backspace-not-working |
How should I do that? Just simple
? What if |
I'll have a look, thanks for the hint! |
Sure :) If I knew your terminal emulator I could give you more help; for example I use |
I'm using konsole, infocmp shows this: http://dpaste.com/0S9Z810.
What do you think? Should be support both or force KEY_BACKSPACE? |
I think we should force But if you insist on hacking |
For me it's ok to only support BACKSPACE. |
Rebased 😄 |
Backspace works now on my system. I can't think of a good reason for us
to be defining our own KEY_BS rather than using ncurses' KEY_BACKSPACE -
so let's stop doing that!