From 0e2a62581536dd99c53c1e99b9cfa05a0338e03c Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Tue, 7 Aug 2012 00:01:48 -0700 Subject: Added some limited support for autosuggesting processes --- complete.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'complete.cpp') diff --git a/complete.cpp b/complete.cpp index 14d372c1..a4f6a9aa 100644 --- a/complete.cpp +++ b/complete.cpp @@ -350,10 +350,10 @@ class completer_t { complete_flags_t flags ); expand_flags_t expand_flags() const { - /* Never do command substitution in autosuggestions. Sadly, we also can't yet do process expansion because it's not thread safe. */ + /* 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 (type == COMPLETE_AUTOSUGGEST) - result |= EXPAND_SKIP_CMDSUBST | EXPAND_SKIP_PROCESS; + result |= EXPAND_SKIP_CMDSUBST | EXPAND_SKIP_JOBS; return result; } -- cgit v1.2.3