From 40b23544422211471a2f93a9ad24bdf8b5ff9169 Mon Sep 17 00:00:00 2001
From: Michal Nazarewicz <mina86@mina86.com>
Date: Sat, 6 Oct 2018 10:18:52 +0100
Subject: [PATCH] Fix user_command
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Due to a rogue ‘shift’ left in tab’s user_command action, commands
did not work at all.  Fix that by removing that bogus ‘shift’.
---
 tabbedex | 1 -
 1 file changed, 1 deletion(-)

diff --git a/tabbedex b/tabbedex
index 1723c30..44f0ae1 100644
--- a/tabbedex
+++ b/tabbedex
@@ -491,7 +491,6 @@ sub enable_action_hooks {
 			goto \&urxvt::ext::tabbedex::root::tab_action;
 		}
 	} : sub {
-		my ($tab, $cmd) = shift;
 		if ($_[1] =~ s/^tabbedex://) {
 			unshift @_, $_[0]{root};
 			goto \&urxvt::ext::tabbedex::root::tab_action;