Skip to content

Commit

Permalink
added shift+Tab support
Browse files Browse the repository at this point in the history
  • Loading branch information
veksha committed Apr 17, 2023
1 parent 2fadaff commit 60b24c6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions terminal.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,9 @@ def form_key_down(self, id_dlg, id_ctl, data='', info=''):
elif key == keys.VK_INSERT:
self.write(app_proc(PROC_GET_CLIP, ''))
return False
elif key == keys.VK_TAB:
self.write(ctrl.ESC+'[Z')
return False
elif len(data) == 2 and 'c' in data and 'a' in data:
if 0:pass # ctrl + alt + key
elif key == keys.VK_PAGEUP:
Expand Down

0 comments on commit 60b24c6

Please sign in to comment.