commit fc13d7da0d4ea5d3d34e8b5137198be647a3249e
parent c42624486a572ad17ea7155a209d0b6c07c471b6
Author: Suraj N. Kurapati <sunaku@gmail.com>
Date: Sat, 5 May 2007 17:50:23 -0700
fix two shortcuts were bound to the same key sequence: key Key::SEND + 't'
Diffstat:
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/wmiirc-config.rb b/wmiirc-config.rb
@@ -313,7 +313,7 @@ EOF
# Changes the tag (according to a menu choice) of each grouped client and
# returns the chosen tag. The +tag -tag idea is from Jonas Pfenniger:
# <http://zimbatm.oree.ch/articles/2006/06/15/wmii-3-and-ruby>
- key Key::SEND + 't' do
+ key Key::SEND + 'v' do
choices = tags.map {|t| [t, "+#{t}", "-#{t}"]}.flatten
if target = show_menu(choices, 'tag as:')
@@ -329,8 +329,6 @@ EOF
c.tags = target
end
end
-
- target
end
end