mirror of
https://github.com/nix-community/nix-on-droid-app.git
synced 2025-11-08 19:46:10 +01:00
Default extra-keys has TAB after ESC and UP/DOWN arrow keys
This commit is contained in:
parent
99e8ffcf90
commit
3693e3c1b6
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue