aboutsummaryrefslogtreecommitdiffhomepage
path: root/complete.h
diff options
context:
space:
mode:
authorGravatar stew <stew@vireo.org>2006-08-22 11:24:51 +1000
committerGravatar stew <stew@vireo.org>2006-08-22 11:24:51 +1000
commitdfe3dc142982cf8c7ca0b9041a91d04cc88a714a (patch)
treeb3e3ce70096c8915c0a492a8469ee9a1f0b05469 /complete.h
parent2ea00ce444d326d11ef64bff3c81636aff624855 (diff)
fish_pager_via_stdin
darcs-hash:20060822012451-2edb7-d8939fab708d8c605d2c7d0683c71f11db659bc9.gz
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'
/**