The readme says zstyle ':autocomplete:*' frecent-dirs off can be used to turn the frecent dirs feature off. However, that does not seem to work. Also, grep -r frecent . at commit 3c7e78daf32f19d3091c088d041942c545d208f1 does not find anything.
Steps to reproduce the behavior:
# *Always* test with the following three steps:
$ cd "$(mktemp -d)" # Create a temp dir and enter it
$ ZDOTDIR=$PWD HOME=$PWD zsh -df # Start a subshell without config files
% zstyle ':autocomplete:*' frecent-dirs off
% source path/to/zsh-autocomplete.plugin.zsh
% echo |
The completion for echo will list frecent dirs.
The zstyle ':autocomplete:*' frecent-dirs off setting will disable the frecent dirs feature.
The feature is enabled.
Thanks for reporting. I know what causes this. It will be easy to fix.
@jcassee This should be fixed now on the dev branch. Please test. Oh, and note that there was a typo in the Readme: The setting is named recent-dirs (not frecent-dirs).
@marlonrichert Indeed, now works as advertised. Thanks!
Merged to master.
@jcassee It is now possible to individually disable any and all extra completions that zsh-autocomplete adds: https://github.com/marlonrichert/zsh-autocomplete/blob/master/README.md#disable-particular-completions
Nice! You are really putting in a lot of thought and effort. Thank you.