Eric Freese
Eric Freese
If you're on a mac, you can use [`caffeinate`](http://osxdaily.com/2012/08/03/disable-sleep-mac-caffeinate-command/). `caffeinate castnow /path/to/whatever` worked for me.
It's not possible in an official way right now. I'll have to think about the best way to support this use case. The ambiguous suggestions are forced by [setting `compstate[insert]`...
I believe I've addressed this in #759.
@grigorii-horos I've created a PR (#759) that takes the implementation from zsh-syntax-highlighting. I realize this PR is very old, but take a look if you're able. I'll likely merge it...
This will need more specific reproduction instructions. Please try `zsh -df` and source the plugin manually and try to reproduce. If you cannot reproduce with that, please add components from...
Do you perhaps have [automatic rebinding disabled](https://github.com/zsh-users/zsh-autosuggestions#disabling-automatic-widget-re-binding) via `ZSH_AUTOSUGGEST_MANUAL_REBIND`? If so, you'll need to call `_zsh_autosuggest_bind_widgets` yourself after modifying the widget lists such as `ZSH_AUTOSUGGEST_CLEAR_WIDGETS`.
Modifying the widget lists after the plugin is instantiated is supported by default. You should be able to add a widget to the clear list and see that it clears...
The plugin doesn't support the feature exactly as you've described it, but would setting `ZSH_AUTOSUGGEST_HISTORY_IGNORE` possibly work for you? It would allow you to suppress history suggestions for certain prefixes...
Closing as a duplicate of #619
> My question is, do I need these lines in my .zshrc if I use zsh-autosuggestions? Yeah you will still need these. This plugin doesn't call `compinit` for you and...