From 7b9ae595c010848dd56fc6e013fb4b0b949238e9 Mon Sep 17 00:00:00 2001 From: Frank LENORMAND Date: Tue, 10 Dec 2019 12:15:08 +0100 Subject: [PATCH] rc repl tmux: Do not check for the Tmux version This commit removes attempts to auto-detect the version of the local Tmux binary. The Tmux package that ships with OpenBSD doesn't have a version number[1], and therefore doesn't provide any way to check if it's compatible with the REPL module, making the feature disabled by default in that distribution. Fixes #3237. [1] https://github.com/tmux/tmux/issues/1141#issuecomment-340244302 --- rc/windowing/repl/tmux.kak | 28 +++------------------------- 1 file changed, 3 insertions(+), 25 deletions(-) diff --git a/rc/windowing/repl/tmux.kak b/rc/windowing/repl/tmux.kak index 845a5969c..227c5496b 100644 --- a/rc/windowing/repl/tmux.kak +++ b/rc/windowing/repl/tmux.kak @@ -1,5 +1,6 @@ # http://tmux.github.io/ # ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ +# Tmux version >= 2 is required to use this module hook global ModuleLoaded tmux %{ require-module tmux-repl @@ -47,30 +48,7 @@ define-command -hidden tmux-send-text -params 0..1 -docstring "tmux-send-text [t } } -define-command -hidden tmux-repl-disabled %{ evaluate-commands %sh{ - VERSION_TMUX=$(tmux -V) - printf 'fail The version of tmux is too old: got %s, expected >= 2.x\n' "${VERSION_TMUX}" -} } - -evaluate-commands %sh{ - VERSION_TMUX=$(tmux -V) - VERSION_TMUX=${VERSION_TMUX##* } - VERSION_TMUX=${VERSION_TMUX#next-} - VERSION_TMUX=${VERSION_TMUX%-rc*} - VERSION_TMUX=${VERSION_TMUX%%.*} - - if [ "${VERSION_TMUX}" = "master" ] \ - || [ "${VERSION_TMUX}" -ge 2 ]; 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 -} +alias global repl tmux-repl-horizontal +alias global send-text tmux-send-text }