summaryrefslogtreecommitdiffstats
path: root/input.c
diff options
context:
space:
mode:
authornicm <nicm>2023-08-08 08:21:29 +0000
committernicm <nicm>2023-08-08 08:21:29 +0000
commit7a44984069328b3eaab36d590c403d23d109aa47 (patch)
treefbd0416d1f521781589e32060db84fe75fa37379 /input.c
parentdee72ed41f54d9ba12b1ce20c18476d9276a876d (diff)
Add flag to next-prompt/previous-prompt to go to command output instead,
from Magnus Gross.
Diffstat (limited to 'input.c')
-rw-r--r--input.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/input.c b/input.c
index 5f2cac46..67b5ee66 100644
--- a/input.c
+++ b/input.c
@@ -2756,6 +2756,9 @@ input_osc_133(struct input_ctx *ictx, const char *p)
case 'A':
gl->flags |= GRID_LINE_START_PROMPT;
break;
+ case 'C':
+ gl->flags |= GRID_LINE_START_OUTPUT;
+ break;
}
}