-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
unhandled ZLE widget #951
Comments
I have the same issue. I do not use oh-my-zsh. Edit: |
I got the same issue: Describe the bugSince a recent update of (any) of my oh-my-zsh plugins, zsh-autosuggestions complains about missing ZLE widgets. To ReproduceSteps to reproduce the behavior: Probably using my zsh config (and running Expected behaviorScreenshots
Desktop
Additional context |
I don't know why but manually reverting zsh-autocomplete to |
Following @VINTX2 rearranging the order of the plugins solved it for me. I placed |
@aatinubu Thanks this actually helped, for some reason i was not loading plugins=(git asdf zsh-syntax-highlighting zsh-autosuggestions)
source ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autocomplete/zsh-autocomplete.plugin.zsh To this: plugins=(git asdf zsh-syntax-highlighting zsh-autosuggestions zsh-autocomplete) solved the issue for me. |
I encountered this error due to using debian dpkg
full diff https://gist.github.com/tonymet/257603dc775bc68cf5ffd1463f49a37a |
Rearranging the order also worked for me, using oh-my-zsh |
This is happening to me using it along zsh-autosuggestions. It happens on my ubuntu box but not on fedora, no idea why. (I'm NOT using oh-my-zsh) |
After submodule update the following error is seen: "zsh-syntax-highlighting: unhandled ZLE widget 'insert-unambiguous-or-complete'" Rearranging plugin order appears to fix it. As noted in the following issue: zsh-users/zsh-syntax-highlighting#951
getting the same problem. reordering the load does not seem to work... :( |
so basically seems like I could manually add |
I don't know why another zsh plugin occurs this error, but in may case when |
it works |
How to fix it --> My .zshrc plugins line looked like this -
i changed it to -
then -
it fixed my issue after rearranging the zsh-autocomplete close the terminal and restart it again it will work fine @aatinubu Thanks 🙏 |
originally i had this issue, but reordering this however did:
but i then realized that i had a line like
in my |
Resolves this issue on my Ubuntu box. zsh-users/zsh-syntax-highlighting#951
zsh-syntax-highlighting: unhandled ZLE widget 'insert-unambiguous-or-complete'
zsh-syntax-highlighting: (This is sometimes caused by doing
bindkey <keys> insert-unambiguous-or-complete
without creating the 'insert-unambiguous-or-complete' widget withzle -N
orzle -C
.)zsh-syntax-highlighting: unhandled ZLE widget 'menu-search'
zsh-syntax-highlighting: (This is sometimes caused by doing
bindkey <keys> menu-search
without creating the 'menu-search' widget withzle -N
orzle -C
.)zsh-syntax-highlighting: unhandled ZLE widget 'recent-paths'
zsh-syntax-highlighting: (This is sometimes caused by doing
bindkey <keys> recent-paths
without creating the 'recent-paths' widget withzle -N
orzle -C
.)I am using ubuntu with oh-my-zsh, and keeping receiving this issue. Searched for so long and still cannot find a way to solve
The text was updated successfully, but these errors were encountered: