aboutsummaryrefslogtreecommitdiffhomepage
path: root/expand.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-06-29 16:40:54 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-06-29 16:40:54 -0700
commit40e4f49dbe483cef84edbea5e7a723e21c0f5e2e (patch)
tree0cd1d0b0008e26b33ff466f570c44eb750d54d4e /expand.h
parent05c721bebbdf6752b66595177194ea174e25f3c5 (diff)
Disable process expansion in autosuggestions
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 f9dd90d8..99993ce6 100644
--- a/expand.h
+++ b/expand.h
@@ -46,7 +46,10 @@ enum {
DIRECTORIES_ONLY = 1 << 5,
/** Don't generate descriptions */
- EXPAND_NO_DESCRIPTIONS = 1 << 6
+ EXPAND_NO_DESCRIPTIONS = 1 << 6,
+
+ /** Don't do process expansion */
+ EXPAND_SKIP_PROCESS = 1 << 7
};
typedef int expand_flags_t;