commit 686d7f5428f016f599faa3e0f04881cf446b7d47
parent a9df2f072cee0e970ad2402544291f7705b6999a
Author: Suraj N. Kurapati <sunaku@gmail.com>
Date: Sun, 10 Sep 2006 22:38:38 -0700
[project @ 0bd3536ae3f9e253c4d8a93a1cd28d2fae0cf816]
[project @ 55]
fix #{ACTION}b operating on volatile selection
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/wmiirc b/wmiirc
@@ -263,7 +263,7 @@ SHORTCUTS = {
curView = WM.focused_view.name
if curView =~ /~\d+$/
- WM.selected_clients.each do |c|
+ WM.with_selection do |c|
c.with_tags do
delete curView
push $` if empty?
@@ -275,7 +275,7 @@ SHORTCUTS = {
else
tmpView = "#{curView}~#{Time.now.to_i}"
- WM.selected_clients.each do |c|
+ WM.with_selection do |c|
c.with_tags do
push tmpView
end