Skip to content

Commit c85222d

Browse files
authored
Merge pull request #1754 from unrealapex/foot
Add foot terminal to terminalSupportsDefinedKeys
2 parents 1afb26b + 4c99f0e commit c85222d

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

CRT.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1142,6 +1142,11 @@ static bool terminalSupportsDefinedKeys(const char* termType) {
11421142
return true;
11431143
}
11441144
break;
1145+
case 'f':
1146+
if (String_eq(termType, "foot")) {
1147+
return true;
1148+
}
1149+
break;
11451150
case 's':
11461151
if (termType[1] == 't' && IS_END_OR_DASH(termType[2])) {
11471152
return true;

0 commit comments

Comments
 (0)