diff options
| author | Omar Antolín <omar.antolin@gmail.com> | 2020-04-22 18:52:53 -0500 |
|---|---|---|
| committer | Omar Antolín <omar.antolin@gmail.com> | 2020-04-22 18:52:53 -0500 |
| commit | d0143484d08f72013885ef43fdd504fed21103c3 (patch) | |
| tree | 92a5693d43f9e860f271a284437640f596036dab | |
| parent | c23a9a40be850f92e2b6e956eefe10ae3aac3580 (diff) | |
Fix missing ./ and ../ in file name completion
I had misunderstood what completion-pcm--filename-try-filter was for.
| -rw-r--r-- | orderless.el | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/orderless.el b/orderless.el index 67dca3a..9a20817 100644 --- a/orderless.el +++ b/orderless.el @@ -205,9 +205,6 @@ This function is part of the `orderless' completion style." components)) (completions (all-completions prefix table pred))) (when completions - (when minibuffer-completing-file-name - (setq completions - (completion-pcm--filename-try-filter completions))) (nconc (cl-loop for candidate in completions collect (orderless--highlight-matches |
