Compare commits

..

2 Commits

Author SHA1 Message Date
Eric Freese
2a5791710a bump version v0.2.13 2016-02-23 18:14:12 -07:00
Eric Freese
03fac1f0d7 Revert "Use zle -w flag to set WIDGET appropriately when calling orig widget"
This reverts commit 70438d233d.
2016-02-23 18:13:03 -07:00
3 changed files with 4 additions and 4 deletions

View File

@@ -1 +1 @@
v0.2.12 v0.2.13

View File

@@ -74,6 +74,6 @@ _zsh_autosuggest_invoke_original_widget() {
shift shift
if [ $widgets[$original_widget_name] ]; then if [ $widgets[$original_widget_name] ]; then
zle $original_widget_name -w -- $@ zle $original_widget_name -- $@
fi fi
} }

View File

@@ -1,6 +1,6 @@
# Fish-like fast/unobtrusive autosuggestions for zsh. # Fish-like fast/unobtrusive autosuggestions for zsh.
# https://github.com/tarruda/zsh-autosuggestions # https://github.com/tarruda/zsh-autosuggestions
# v0.2.12 # v0.2.13
# Copyright (c) 2013 Thiago de Arruda # Copyright (c) 2013 Thiago de Arruda
# Copyright (c) 2016 Eric Freese # Copyright (c) 2016 Eric Freese
# #
@@ -176,7 +176,7 @@ _zsh_autosuggest_invoke_original_widget() {
shift shift
if [ $widgets[$original_widget_name] ]; then if [ $widgets[$original_widget_name] ]; then
zle $original_widget_name -w -- $@ zle $original_widget_name -- $@
fi fi
} }