changeset 638:d36b8abe71ec

[bash] Fix tmux version parser
author nanaya <me@nanaya.pro>
date Wed, 15 Jan 2020 22:42:56 +0900
parents 758ced52ee62
children c107e18388a2
files rc/bashrc
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/rc/bashrc	Tue Jan 14 11:10:49 2020 +0900
+++ b/rc/bashrc	Wed Jan 15 22:42:56 2020 +0900
@@ -301,7 +301,7 @@
   ;;
   *)
     case "$(tmux -V 2> /dev/null)" in
-    "tmux 2."[9][a-z]*|"tmux "[3-9]"."[0-9]|"tmux "[1-9][0-9][0.9]*"."[0-9]) _tmux_conf_ver=2.9;;
+    "tmux 2."[9][a-z]*|"tmux "[3-9]"."[0-9][a-z]*|"tmux "[1-9][0-9][0.9]*"."[0-9][a-z]*) _tmux_conf_ver=2.9;;
     "tmux 2."[2-8]) _tmux_conf_ver=2.2;;
     "tmux 1.9"|"tmux 2."[0-1]) _tmux_conf_ver=1.9;;
     "tmux 1."[4-8]) _tmux_conf_ver=1.4;;