mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-23 01:49:26 +02:00
* Harmonize kbAltUp, kbAltDown and kbAltRight declarations for xterm
terminals with kbAltLeft. Only applied to Haiku to stay on the safe side. Fix use of up, down and right arrow keys in fpide under Haiku (mantis #14491) git-svn-id: trunk@13644 -
This commit is contained in:
parent
196e9f74e4
commit
7616e9e50e
@ -1013,9 +1013,15 @@ const key_sequences:array[0..276] of key_sequence=(
|
||||
(char:0;scan:kbAltDown;st:#27#27'[B'), {rxvt}
|
||||
(char:0;scan:kbAltLeft;st:#27#27'[D'), {rxvt}
|
||||
(char:0;scan:kbAltRight;st:#27#27'[C'), {rxvt}
|
||||
{$ifdef HAIKU}
|
||||
(char:0;scan:kbAltUp;st:#27#27'OA'),
|
||||
(char:0;scan:kbAltDown;st:#27#27'OB'),
|
||||
(char:0;scan:kbAltRight;st:#27#27'OC'),
|
||||
{$else}
|
||||
(char:0;scan:kbAltUp;st:#27'OA'),
|
||||
(char:0;scan:kbAltDown;st:#27'OB'),
|
||||
(char:0;scan:kbAltRight;st:#27'OC'),
|
||||
{$endif}
|
||||
(char:0;scan:kbAltLeft;st:#27#27'OD'),
|
||||
(char:0;scan:kbAltPgUp;st:#27#27'[5~'), {rxvt}
|
||||
(char:0;scan:kbAltPgDn;st:#27#27'[6~'), {rxvt}
|
||||
|
Loading…
Reference in New Issue
Block a user