https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=226553

--- Comment #14 from Sergey <[email protected]> ---
This patch https://reviews.freebsd.org/D14936 actually does work, but I have
several concerns. 
In order to be able to map fkeys to for example Ctrl/Alt/Shift + ArrowKeys
line
if (fkey >=0 && fkey < 65) {
have to chenged to 
if (fkey >=0 && fkey < 97) {
And second problem is that after patching, some keys on the console misbehave,
for example Del key starts to work as Backspace. Or in 'less' pager arrow keys
and PgUp/PgDn doesn't work anymore. Rebuilding without the patch fixes the keys
behaviour.
Best regards,
Sergey.

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "[email protected]"

Reply via email to