aboutsummaryrefslogtreecommitdiffhomepage
path: root/expand.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2014-09-25 22:18:36 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2014-09-25 22:18:36 -0700
commitb511550917d9b657237392268ba07cd38e6b3fcc (patch)
tree12a1011f5f2be317765612a07ef7be14aa75e789 /expand.h
parent7935b86cb2f06385f5fcb8774efcc0ae8f47a0b8 (diff)
Revert "Prepend ./ to "flag-like file" wildcard expansions and completions"
This reverts commit 316d7004a3d4f6905f36301b6d5c9ebd934f11fa. Reverts fix for 1519 in light of #1713 Conflicts: fish_tests.cpp
Diffstat (limited to 'expand.h')
-rw-r--r--expand.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/expand.h b/expand.h
index fe13a145..14a4f477 100644
--- a/expand.h
+++ b/expand.h
@@ -60,10 +60,7 @@ enum
EXPAND_SKIP_HOME_DIRECTORIES = 1 << 9,
/** Allow fuzzy matching */
- EXPAND_FUZZY_MATCH = 1 << 10,
-
- /** Requests that flag-like files not be sanitized. Sanitization means that a completion '--foo' that represents a file will be replaced by './--foo'. */
- EXPAND_NO_SANITIZE_FLAGLIKE_FILES = 1 << 11
+ EXPAND_FUZZY_MATCH = 1 << 10
};
typedef int expand_flags_t;