stepb / urxvt-tabbedex

Tabbed plugin for rxvt-unicode with many enhancements
75 stars 54 forks source link

something was broken #41

Open Helius opened 9 years ago

Helius commented 9 years ago

urxvt: perl hook 0 evaluation error: /home/eugene/.urxvt/ext/tabbedex: syntax error at /home/eugene/.urxvt/ext/tabbedex line 669, near "$hook qw(start destroy user_command key_press property_notify add_lines)" syntax error at /home/eugene/.urxvt/ext/tabbedex line 681, near "}

}"

This is perl 5, version 18, subversion 2 (v5.18.2) built for x86_64-linux-gnu-thread-multi ubuntu 14.04 x64

Chimrod commented 9 years ago

Just replace

for my $hook qw(start destroy user_command key_press property_notify add_lines) {

by

for my $hook (qw(start destroy user_command key_press property_notify add_lines)) {

and everything will be fine !

mina86 commented 8 years ago

https://github.com/mina86/urxvt-tabbedex is more up to date and you should use it instead.