Added keystroke mapping Shift+Tab in shellhost (#367)

This commit is contained in:
bugale 2019-05-22 00:03:53 +03:00 committed by Manoj Ampalam
parent 18884b29fd
commit c9c6da0bee
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ struct key_translation keys[] = {
{ L"\x1b[D", VK_LEFT, 0 , 0 , 0},
{ L"\x1b[F", VK_END, 0 , 0 , 0}, /* KeyPad END */
{ L"\x1b[H", VK_HOME, 0 , 0 , 0}, /* KeyPad HOME */
{ L"\x1b[Z", 0, 0 , 0 , 0}, /* ignore Shift+TAB */
{ L"\x1b[Z", VK_TAB, L'\t' , 0 , SHIFT_PRESSED},
{ L"\x1b[1~", VK_HOME, 0 , 0 , 0},
{ L"\x1b[2~", VK_INSERT, 0 , 0 , 0},
{ L"\x1b[3~", VK_DELETE, 0 , 0 , 0},