From 8101886e488111cf26d94468854efd5b3daf0856 Mon Sep 17 00:00:00 2001 From: Frank Terbeck Date: Wed, 1 Jun 2011 21:30:11 +0000 Subject: 29412: _tmux: Disable sub-command completions if tmux is not found in `$path'. --- ChangeLog | 5 ++++- Completion/Unix/Command/_tmux | 4 ++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 9c5b99de6..a58e6cea9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2011-06-01 Frank Terbeck + * 29412: Completion/Unix/Command/_tmux: Disable sub-command + completions if tmux is not found in `$path'. + * Valentin Haenel: 29431: Misc/vcs_info-examples: Hook example for signaling untracked files in git repositories. @@ -14917,5 +14920,5 @@ ***************************************************** * This is used by the shell to define $ZSH_PATCHLEVEL -* $Revision: 1.5353 $ +* $Revision: 1.5354 $ ***************************************************** diff --git a/Completion/Unix/Command/_tmux b/Completion/Unix/Command/_tmux index e9977fbbd..5fb721960 100644 --- a/Completion/Unix/Command/_tmux +++ b/Completion/Unix/Command/_tmux @@ -1520,6 +1520,10 @@ function _tmux() { _describe -t subcommands 'tmux commands and aliases' _tmux_commands -- _tmux_aliases fi else + if (( ${+commands[tmux]} == 0 )); then + _message '`tmux'\'' not found in $path; sub-cmd completions disabled.' + return 0 + fi tmuxcommand="${words[1]}" if [[ -n ${_tmux_aliasmap[$tmuxcommand]} ]] ; then tmuxcommand="${_tmux_aliasmap[$tmuxcommand]}" -- cgit v1.2.3