summaryrefslogtreecommitdiff
path: root/ted.h
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2021-02-09 10:15:42 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2021-02-09 10:15:42 -0500
commit7be42dc83ff694da2f1e66a59a14fe51d3e18fba (patch)
treeb4da6d79dcfd52c11a1220860670ff3ac0477e01 /ted.h
parentf9afc00d15f934d8509f3eeb7c62b01ca84ca204 (diff)
case sensitivity, regex
Diffstat (limited to 'ted.h')
-rw-r--r--ted.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/ted.h b/ted.h
index 7d7f7c7..be41ac8 100644
--- a/ted.h
+++ b/ted.h
@@ -227,6 +227,8 @@ typedef struct Ted {
bool search_cwd; // should the working directory be searched for files? set to true if the executable isn't "installed"
bool quit; // if set to true, the window will close next frame. NOTE: this doesn't check for unsaved changes!!
bool find; // is the find menu open?
+ bool find_regex, find_case_sensitive; // find options
+ u32 find_flags; // flags used last time search term was compiled
pcre2_code *find_code;
pcre2_match_data *find_match_data;
FindResult *find_results;