]> git.sur5r.net Git - i3/i3/commitdiff
swap up/down, also modify the testcase
authorMichael Stapelberg <michael@stapelberg.de>
Tue, 9 Aug 2011 07:46:02 +0000 (09:46 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Tue, 9 Aug 2011 07:46:02 +0000 (09:46 +0200)
docs/userguide
i3-migrate-config-to-v4
testcases/t/71-config-migrate.t

index f4dd8cb153522accf9cd19bc6d9ea2d42840cd4b..158ed55321c1549bbad26b15a0e367f982945b08 100644 (file)
@@ -789,11 +789,11 @@ mode "resize" {
         bindsym j resize shrink left
         bindsym Shift+j resize grow left
 
-        bindsym k resize grow up
-        bindsym Shift+k resize shrink up
+        bindsym k resize grow down
+        bindsym Shift+k resize shrink down
 
-        bindsym l resize shrink down
-        bindsym Shift+l resize grow down
+        bindsym l resize shrink up
+        bindsym Shift+l resize grow up
 
         bindsym semicolon resize grow right
         bindsym Shift+semicolon resize shrink right
index 65d6bdce3b6d114b2875a64e21f6bc11f44d7b6a..0a8db2deb275c9894d065692a7be3e4965214798 100755 (executable)
@@ -290,9 +290,9 @@ sub convert_command {
         my $cmd = 'resize ';
         $cmd .= ($sign eq '+' ? 'grow' : 'shrink') . ' ';
         if ($direction eq 'top') {
-            $direction = 'down';
-        } elsif ($direction eq 'bottom') {
             $direction = 'up';
+        } elsif ($direction eq 'bottom') {
+            $direction = 'down';
         }
         $cmd .= "$direction ";
         $cmd .= "$px px";
index 4e97fb27e67276a0159c3bae6c6ab03b7d3ed42e..fb331c482229e0b4858d5415482eaf1b76eba718 100644 (file)
@@ -256,13 +256,13 @@ $output = migrate_config('bindsym Mod1+f resize left +10');
 ok(line_exists($output, qr|^bindsym Mod1\+f resize grow left 10 px$|), 'resize left changed');
 
 $output = migrate_config('bindsym Mod1+f resize top -20');
-ok(line_exists($output, qr|^bindsym Mod1\+f resize shrink top 20 px$|), 'resize top changed');
+ok(line_exists($output, qr|^bindsym Mod1\+f resize shrink up 20 px$|), 'resize top changed');
 
 $output = migrate_config('bindsym Mod1+f resize right -20');
 ok(line_exists($output, qr|^bindsym Mod1\+f resize shrink right 20 px$|), 'resize right changed');
 
 $output = migrate_config('bindsym Mod1+f resize bottom +23');
-ok(line_exists($output, qr|^bindsym Mod1\+f resize grow bottom 23 px$|), 'resize bottom changed');
+ok(line_exists($output, qr|^bindsym Mod1\+f resize grow down 23 px$|), 'resize bottom changed');
 
 #####################################################################
 # check whether jump's parameters get changed correctly