aboutsummaryrefslogtreecommitdiffhomepage
path: root/complete.h
diff options
context:
space:
mode:
Diffstat (limited to 'complete.h')
-rw-r--r--complete.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/complete.h b/complete.h
index ef507745..5abd4453 100644
--- a/complete.h
+++ b/complete.h
@@ -54,6 +54,17 @@
#define COMPLETE_SEP_STR L"\004"
/**
+ Sent to the fish_pager to signify the end of input
+*/
+
+#define PAGER_EOT '\003'
+
+/**
+ Sent to the fish_pager to signify the end of input
+*/
+#define PAGER_EOT_STR L"\003"
+
+/**
Separator between completion items in fish_pager. This is used for
completion grouping, e.g. when putting completions with the same
descriptions on the same line.
@@ -66,6 +77,10 @@
*/
#define PROG_COMPLETE_SEP L'\t'
+/**
+ Terminator for completions sent to the fish_pager
+*/
+#define COMPLETE_TERMINATOR L'\006'
/**