Only recognise DECCPR as a position report, so it is distinct from F3

This commit is contained in:
Paul LeoNerd Evans
2012-11-30 16:12:26 +00:00
parent efc5b7e088
commit c00f6cd3c6
4 changed files with 13 additions and 20 deletions

6
demo.c
View File

@@ -61,12 +61,12 @@ int main(int argc, char *argv[])
if(key.type == TERMKEY_TYPE_MOUSE) {
int line, col;
termkey_interpret_mouse(tk, &key, NULL, NULL, &line, &col);
printf("%s at line=%d, col=%d)\n", buffer, line, col);
printf("%s at line=%d, col=%d\n", buffer, line, col);
}
else if(key.type == TERMKEY_TYPE_POSITION) {
int line, col;
termkey_interpret_position(tk, &key, &line, &col);
printf("Cursor position report at line=%d, col=%d)\n", line, col);
printf("Cursor position report at line=%d, col=%d\n", line, col);
}
else {
printf("%s\n", buffer);
@@ -80,7 +80,7 @@ int main(int argc, char *argv[])
if(key.type == TERMKEY_TYPE_UNICODE &&
key.modifiers == 0 &&
key.code.codepoint == '?') {
printf("\033[6n");
printf("\033[?6n");
fflush(stdout);
}
}