aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/expand.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/expand.h')
-rw-r--r--src/expand.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/expand.h b/src/expand.h
index a6b287f4..b07186e4 100644
--- a/src/expand.h
+++ b/src/expand.h
@@ -56,7 +56,10 @@ enum
EXPAND_SKIP_HOME_DIRECTORIES = 1 << 8,
/** Allow fuzzy matching */
- EXPAND_FUZZY_MATCH = 1 << 9
+ EXPAND_FUZZY_MATCH = 1 << 9,
+
+ /** Disallow directory abbreviations like /u/l/b for /usr/local/bin. Only applicable if EXPAND_FUZZY_MATCH is set. */
+ EXPAND_NO_FUZZY_DIRECTORIES = 1 << 10
};
typedef int expand_flags_t;