mirror of
https://github.com/fankes/termux-app.git
synced 2025-09-07 03:05:18 +08:00
Default extra-keys has TAB after ESC and UP/DOWN arrow keys
This commit is contained in:
committed by
Fredrik Fornwall
parent
99e8ffcf90
commit
3693e3c1b6
@@ -141,7 +141,7 @@ final class TermuxPreferences {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
JSONArray arr = new JSONArray(props.getProperty("extra-keys", "[['ESC','CTRL','ALT','TAB','-','/','|']]"));
|
JSONArray arr = new JSONArray(props.getProperty("extra-keys", "[['ESC', 'TAB', 'CTRL', 'ALT', '-', 'DOWN', 'UP']]"));
|
||||||
mExtraKeys = new String[arr.length()][];
|
mExtraKeys = new String[arr.length()][];
|
||||||
for(int i = 0; i < arr.length(); i++) {
|
for(int i = 0; i < arr.length(); i++) {
|
||||||
JSONArray line = arr.getJSONArray(i);
|
JSONArray line = arr.getJSONArray(i);
|
||||||
|
Reference in New Issue
Block a user