]> git.lyx.org Git - lyx.git/commitdiff
Attempt to bump prefs2prefs_lfuns.py.
authorPavel Sanda <sanda@lyx.org>
Sat, 29 Sep 2012 18:04:56 +0000 (20:04 +0200)
committerPavel Sanda <sanda@lyx.org>
Sat, 29 Sep 2012 18:04:56 +0000 (20:04 +0200)
lib/scripts/prefs2prefs_lfuns.py

index 1295a7dc308576d99249a38d9072181d6a8a23bc..0461cc26b529a8970488d118120f9385c61db387 100644 (file)
@@ -146,6 +146,15 @@ def Bar2bar(line):
        newline = btype + " \"" + mod + "bar\"" + rest
        return (True, newline)
 
+def paragraph_break(line):
+       return simple_renaming(line, "break-paragraph", "paragraph-break")
+
+def tab_group_close(line):
+       return simple_renaming(line, "close-tab-group", "tab-group-close")
+
+def view_split(line):
+       return simple_renaming(line, "split-view", "view-split")
+
 #
 #
 ###########################################################
@@ -154,7 +163,7 @@ def Bar2bar(line):
 # Conversion chain
 
 conversions = [
-       [  1, [ # this will be a long list of conversions to format 1
+       [  1, [ # this will be a long list of conversions to format 1, LyX 2.0
                next_inset_toggle,
                next_inset_modify,
                optional_insert,
@@ -166,5 +175,10 @@ conversions = [
                tabular_feature,
                Bar2bar
        ]],
+       [  2, [ # list of conversions to format 2, LyX 2.1
+               paragraph_break,
+               tab_group_close,
+               view_split
+       ]],
 ]