diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Util/check-tmux-state | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 6499cf06e..589295006 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2016-11-06 Frank Terbeck <ft@bewatermyfriend.org> + + * 39847: Util/check-tmux-state: Update helper function name + pattern + 2016-11-05 Barton E. Schaefer <schaefer@zsh.org> * unposted: Completion/compaudit: tweak replacement getent diff --git a/Util/check-tmux-state b/Util/check-tmux-state index 4cba36070..2c6106203 100644 --- a/Util/check-tmux-state +++ b/Util/check-tmux-state @@ -58,7 +58,7 @@ __tmux-window-options # Subcommand helper functions are defined like "function _tmux-foo() {" # in the _tmux function definition file. typeset -a supported_commands -supported_commands=( $( grep 'function *\<_tmux-' $func | +supported_commands=( $( grep '^_tmux-[^(]*() *{$' $func | sed -e 's,^.*\<_tmux-,,' -e 's,(.*$,,' ) ) # Ask tmux for available commands: |