aboutsummaryrefslogtreecommitdiffhomepage
path: root/expand.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-05-25 15:41:18 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-05-25 15:41:18 -0700
commit908b07527ed5fe4952f357db73e270da9d09baba (patch)
tree53df9b5a78c5a43235aa0a2b0ec42d36a0cab8b9 /expand.h
parentee7339b66102c0a183b6cf37dbee83c5de6f4d91 (diff)
Support for fuzzy completions
Diffstat (limited to 'expand.h')
-rw-r--r--expand.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/expand.h b/expand.h
index dbacfd77..701695d2 100644
--- a/expand.h
+++ b/expand.h
@@ -56,7 +56,10 @@ enum
EXPAND_SKIP_JOBS = 1 << 8,
/** Don't expand home directories */
- EXPAND_SKIP_HOME_DIRECTORIES = 1 << 9
+ EXPAND_SKIP_HOME_DIRECTORIES = 1 << 9,
+
+ /** Allow fuzzy matching */
+ EXPAND_FUZZY_MATCH = 1 << 10
};
typedef int expand_flags_t;