Fix error when using autosuggest widgets

This commit is contained in:
Eric Freese 2016-02-17 13:41:37 -07:00
parent aa5ceee256
commit acc129de6c
2 changed files with 6 additions and 0 deletions

View file

@ -66,6 +66,9 @@ _zsh_autosuggest_bind_widgets() {
# Given the name of an original widget and args, invoke it, if it exists
_zsh_autosuggest_invoke_original_widget() {
# Do nothing unless called with at least one arg
[ $# -gt 0 ] || return
local original_widget_name=$1
shift

View file

@ -168,6 +168,9 @@ _zsh_autosuggest_bind_widgets() {
# Given the name of an original widget and args, invoke it, if it exists
_zsh_autosuggest_invoke_original_widget() {
# Do nothing unless called with at least one arg
[ $# -gt 0 ] || return
local original_widget_name=$1
shift