summaryrefslogtreecommitdiff
path: root/src/main.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.h')
-rw-r--r--src/main.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main.h b/src/main.h
index cc1e50f..cca575b 100644
--- a/src/main.h
+++ b/src/main.h
@@ -61,6 +61,8 @@
#define MARK_TICK 0
#define MARK_SIZE (sizeof(MARK_CHARS) - 1)
+#define GLOBAL_MARK_CHARS "'ABCDEFGHIJKLMNOPQRSTUVWXYZ"
+
#define USER_REG "abcdefghijklmnopqrstuvwxyz"
/* registers in order displayed for :register command */
#define REG_CHARS "\"" USER_REG ":%/;"
@@ -190,6 +192,10 @@ struct State {
int matches; /* number of matching search results */
char *last_query; /* last search query */
} search;
+ struct {
+ guint64 pos;
+ char *uri;
+ } global_marks[MARK_SIZE];
};
struct Map {