* readline.c (bind_arrow_keys_internal):

Handle VK_HOME, VK_END, VK_DELETE and VK_INSERT for mingw
	hosts.
This commit is contained in:
Pierre Muller 2013-09-24 14:49:48 +00:00
parent 3ee2c4af0f
commit cd5f70ffce
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2013-09-24 Pierre Muller <muller@sourceware.org>
* readline.c (bind_arrow_keys_internal):
Handle VK_HOME, VK_END, VK_DELETE and VK_INSERT for mingw
hosts.
2013-09-23 Martin Benda <martin.benda@omsquare.com>
Checked in by Joel Brobecker <brobecker@adacore.com>

View File

@ -1159,6 +1159,10 @@ bind_arrow_keys_internal (map)
rl_bind_keyseq_if_unbound ("\340P", rl_get_next_history);
rl_bind_keyseq_if_unbound ("\340M", rl_forward_char);
rl_bind_keyseq_if_unbound ("\340K", rl_backward_char);
rl_bind_keyseq_if_unbound ("\340G", rl_beg_of_line);
rl_bind_keyseq_if_unbound ("\340O", rl_end_of_line);
rl_bind_keyseq_if_unbound ("\340S", rl_delete);
rl_bind_keyseq_if_unbound ("\340R", rl_overwrite_mode);
#endif
_rl_keymap = xkeymap;