aboutsummaryrefslogtreecommitdiffhomepage
path: root/common.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2014-01-24 15:59:18 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2014-01-24 18:10:41 -0800
commit0a1960865ed36e1e07615f72267b939459edebd4 (patch)
treec735d99d763038be50141a34c0c81e3f12db3cb2 /common.h
parent830ab99e6ee86bad27014b54f07777565375ec4f (diff)
Support for "merged completions" (multiple completions on the same line)
in new pager. Support for using up-arrow to end pager navigation.
Diffstat (limited to 'common.h')
-rw-r--r--common.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/common.h b/common.h
index 2a96b749..3e9be106 100644
--- a/common.h
+++ b/common.h
@@ -98,7 +98,10 @@ enum selection_direction_t
/* logical directions */
direction_next,
- direction_prev
+ direction_prev,
+
+ /* special value that means deselect */
+ direction_deselect
};
inline bool selection_direction_is_cardinal(selection_direction_t dir)