]> git.sur5r.net Git - i3/i3/commitdiff
migrate-config: also make force_focus_wrapping a v4-only statement
authorMichael Stapelberg <michael@stapelberg.de>
Thu, 7 Jul 2011 22:17:48 +0000 (00:17 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Thu, 7 Jul 2011 22:17:48 +0000 (00:17 +0200)
i3-migrate-config-to-v4.pl
src/cfgparse.y

index eee730d1e5fd88700d03f4b043a76b0a013bd80c..029814573d0b5ed874aa360470d12a48d5f86775 100755 (executable)
@@ -60,7 +60,9 @@ sub need_to_convert {
 
     for my $line (@lines) {
         # only v4 configfiles can use bindcode or workspace_layout
-        return 0 if $line =~ /^bindcode/ || $line =~ /^workspace_layout/;
+        return 0 if $line =~ /^bindcode/ ||
+                    $line =~ /^workspace_layout/ ||
+                    $line =~ /^force_focus_wrapping/;
 
         # have a look at bindings
         next unless $line =~ /^bind/;
index 424388936807a7d9512ac8ead4f39b57693c4c82..83d95fc5b987343c520a2b4a39e4e6797f27d494 100644 (file)
@@ -65,6 +65,7 @@ static int detect_version(char *buf) {
 
         /* check for some v4-only statements */
         if (strncasecmp(line, "bindcode", strlen("bindcode")) == 0 ||
+            strncasecmp(line, "force_focus_wrapping", strlen("force_focus_wrapping")) == 0 ||
             strncasecmp(line, "# i3 config file (v4)", strlen("# i3 config file (v4)")) == 0 ||
             strncasecmp(line, "workspace_layout", strlen("workspace_layout")) == 0) {
             printf("deciding for version 4 due to this line: %.*s\n", (int)(walk-line), line);