extra keys view: add up/down arrow keys

This commit is contained in:
Leonid Plyushch 2019-02-25 14:06:47 +02:00
parent f5b976f597
commit 22f9b0fab2

View file

@ -174,7 +174,7 @@ final class TermuxPreferences {
}
try {
JSONArray arr = new JSONArray(props.getProperty("extra-keys", "[['ESC', 'TAB', 'CTRL', 'ALT', '-', 'DOWN', 'UP']]"));
JSONArray arr = new JSONArray(props.getProperty("extra-keys", "[['ESC', 'CTRL', 'ALT', 'TAB', 'LEFT', 'RIGHT', 'UP', 'DOWN']]"));
mExtraKeys = new String[arr.length()][];
for (int i = 0; i < arr.length(); i++) {