Merge pull request #304 from okdana/dana/no-beep
Avoid ringing bell when accepting suggestions
This commit is contained in:
@@ -106,7 +106,7 @@ _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
|
||||
(( $# )) || return
|
||||
(( $# )) || return 0
|
||||
|
||||
local original_widget_name="$1"
|
||||
|
||||
|
||||
@@ -238,7 +238,7 @@ _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
|
||||
(( $# )) || return
|
||||
(( $# )) || return 0
|
||||
|
||||
local original_widget_name="$1"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user