add F1-12 to termux via the extra keys popup feature

This commit is contained in:
KemoNine 2022-05-22 15:34:22 -04:00
parent 6fd7ff948f
commit 9888741bd3
1 changed files with 12 additions and 12 deletions

View File

@ -2,21 +2,21 @@ extra-keys = [ \
[ \ [ \
'ESC', \ 'ESC', \
'-', \ '-', \
'BACKSLASH', \ {key: BACKSLASH,popup: {macro: "F6", display: "F6"}}, \
'HOME', \ {key: HOME, popup: {macro: "F5", display: "F5"}}, \
'UP', \ {key: UP, popup: {macro: "F4", display: "F4"}}, \
'END', \ {key: END, popup: {macro: "F3", display: "F3"}}, \
'PGUP', \ {key: PGUP, popup: {macro: "F2", display: "F2"}}, \
'DEL' \ {key: DEL, popup: {macro: "F1", display: "F1"}} \
], \ ], \
[ \ [ \
'TAB', \ 'TAB', \
'CTRL', \ 'CTRL', \
'ALT', \ {key: ALT, popup: {macro: "F12", display: "F12"}}, \
'LEFT', \ {key: LEFT, popup: {macro: "F11", display: "F11"}}, \
'DOWN', \ {key: DOWN, popup: {macro: "F10", display: "F10"}}, \
'RIGHT', \ {key: RIGHT, popup: {macro: "F9", display: "F9"}}, \
'PGDN', \ {key: PGDN, popup: {macro: "F8", display: "F8"}}, \
'DRAWER' \ {key: DRAWER, popup: {macro: "F7", display: "F7"}} \
] \ ] \
] ]