From 27da0d7f287f49a477e5901e979230a2858689ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Thu, 29 Aug 2019 21:02:35 +0200 Subject: [PATCH] term: add a 'cursor' (position) to the search state --- terminal.h | 1 + 1 file changed, 1 insertion(+) diff --git a/terminal.h b/terminal.h index 948a8f11..d81ff76d 100644 --- a/terminal.h +++ b/terminal.h @@ -349,6 +349,7 @@ struct terminal { wchar_t *buf; size_t len; size_t sz; + size_t cursor; int original_view; bool view_followed_offset;