aboutsummaryrefslogtreecommitdiffhomepage
path: root/complete.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-11-29 13:31:18 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-11-29 13:34:03 -0800
commit4aaa9e7d9fd08ad3129b3b7ed0c82f368611ea6f (patch)
tree656c404859b120f80e4f06b52343e14f34042950 /complete.cpp
parente1608362d0d1da493153e6884486ce82deab27dd (diff)
Allow autosuggestions to do job expansion. Fixes
Diffstat (limited to 'complete.cpp')
-rw-r--r--complete.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/complete.cpp b/complete.cpp
index de822a6b..2b7423b5 100644
--- a/complete.cpp
+++ b/complete.cpp
@@ -430,7 +430,7 @@ public:
/* Never do command substitution in autosuggestions. Sadly, we also can't yet do job expansion because it's not thread safe. */
expand_flags_t result = 0;
if (this->type() == COMPLETE_AUTOSUGGEST)
- result |= EXPAND_SKIP_CMDSUBST | EXPAND_SKIP_JOBS;
+ result |= EXPAND_SKIP_CMDSUBST;
/* Allow fuzzy matching */
if (this->fuzzy())