commit 44e4188c9d47747b6001f2b19aee33d29efdb495
parent 0b0c2a2ba5e3d10e98de849160b97ab90275c338
Author: Suraj N. Kurapati <sunaku@gmail.com>
Date: Mon, 19 Jan 2009 23:54:31 -0800
change shortcut for "group all clients in managed area" from a -> m
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/config.rb b/config.rb
@@ -467,14 +467,14 @@ EOF
end
# include all clients in the managed areas into the grouping
- key Key::GROUP + 'a' do
+ key Key::GROUP + 'm' do
curr_view.columns.each do |c|
c.group
end
end
# exclude all clients in the managed areas from the grouping
- key Key::GROUP + 'Shift-a' do
+ key Key::GROUP + 'Shift-m' do
curr_view.columns.each do |c|
c.ungroup
end