mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Attempt to bump prefs2prefs_lfuns.py.
This commit is contained in:
parent
b00766db51
commit
a982bdc5fa
@ -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
|
||||
]],
|
||||
]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user