]> git.sur5r.net Git - i3/i3/commitdiff
migrate-config: also migrate border toggle (bt) (Thanks woddf2)
authorMichael Stapelberg <michael@stapelberg.de>
Fri, 8 Jul 2011 23:02:13 +0000 (01:02 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Fri, 8 Jul 2011 23:02:13 +0000 (01:02 +0200)
i3-migrate-config-to-v4.pl
testcases/t/71-config-migrate.t

index 029814573d0b5ed874aa360470d12a48d5f86775..f4f970df022c4194648f37c112bdccb50ae864dd 100755 (executable)
@@ -219,6 +219,7 @@ sub convert_command {
         qr/^bn/ => 'border normal',
         qr/^bp/ => 'border 1pixel',
         qr/^bb/ => 'border none',
+        qr/^bt/ => 'border toggle',
         qr/^pw/ => 'workspace prev',
         qr/^nw/ => 'workspace next',
     );
index 1d81aaac34f905e627db70a32f56fc7cd99fe675..922ddc45f730796c6bfd5e18e2cf9a39714755cf 100644 (file)
@@ -185,6 +185,7 @@ $input = <<EOT;
     bindsym Mod1+s bn
     bindsym Mod1+s bp
     bindsym Mod1+s bb
+    bindsym Mod1+s bt
 
     bindsym Mod1+j wch
     bindsym Mod1+j wcml
@@ -213,6 +214,7 @@ ok(line_exists($output, qr|^bindsym Mod1\+s move right$|), 'ml replaced');
 ok(line_exists($output, qr|^bindsym Mod1\+s border normal$|), 'bn replaced');
 ok(line_exists($output, qr|^bindsym Mod1\+s border 1pixel$|), 'bp replaced');
 ok(line_exists($output, qr|^bindsym Mod1\+s border none$|), 'bb replaced');
+ok(line_exists($output, qr|^bindsym Mod1\+s border toggle$|), 'bt replaced');
 ok(line_exists($output, qr|^#.*with container.*obsolete.*wch$|), 'with container removed');
 ok(line_exists($output, qr|^#.*with container.*obsolete.*wcml$|), 'with container removed');
 ok(line_exists($output, qr|^bindsym Mod1\+k kill$|), 'kill unchanged');