From 3a4e258fde4978d3b7d4ad5681202f23bd336282 Mon Sep 17 00:00:00 2001 From: Frank LENORMAND Date: Thu, 23 Jun 2016 20:07:51 +0300 Subject: [PATCH] Print an error message when unsupported tmux functions are called Closes #615 --- rc/extra/tmux-repl.kak | 25 ++++++++++++++++++++----- 1 file changed, 20 insertions(+), 5 deletions(-) diff --git a/rc/extra/tmux-repl.kak b/rc/extra/tmux-repl.kak index f576bcab..5f96bd30 100644 --- a/rc/extra/tmux-repl.kak +++ b/rc/extra/tmux-repl.kak @@ -3,11 +3,21 @@ hook global KakBegin .* %{ %sh{ + VERSION_TMUX=$(tmux -V) + VERSION_TMUX=$(expr "${VERSION_TMUX}" : 'tmux \([0-9]*\).*') + if [ -n "$TMUX" ]; then - echo " - alias global repl tmux-repl-horizontal - alias global send-text tmux-send-text - " + if [ "${VERSION_TMUX}" -gt 1 ]; then + echo " + alias global repl tmux-repl-horizontal + alias global send-text _tmux-send-text + " + else + echo " + alias global repl _tmux-repl-disabled + alias global send-text _tmux-repl-disabled + " + fi fi } } @@ -39,7 +49,7 @@ def tmux-repl-window -params 0..1 -command-completion -docstring "Create a new w tmux-repl-impl 'new-window' %arg{@} } -def tmux-send-text -docstring "Send selected text to the repl pane in tmux" %{ +def -hidden _tmux-send-text -docstring "Send selected text to the repl pane in tmux" %{ nop %sh{ tmux set-buffer -b kak_selection "${kak_selection}" kak_orig_window=$(tmux display-message -p '#I') @@ -51,3 +61,8 @@ def tmux-send-text -docstring "Send selected text to the repl pane in tmux" %{ tmux select-pane -t:.${kak_orig_pane} } } + +def -hidden _tmux-repl-disabled %{ %sh{ + VERSION_TMUX=$(tmux -V) + printf %s "echo -color Error %{The version of tmux is too old: got ${VERSION_TMUX}, expected >= 2.x}" +} }