mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Add ignoresep option to layout lfun
This does not force the cursor in a separator paragraph to endpos. This is needed for environment-split.
This commit is contained in:
parent
12bd7352fd
commit
8ad7b0caea
@ -3049,10 +3049,11 @@ void LyXAction::init()
|
||||
* \var lyx::FuncCode lyx::LFUN_PARAGRAPH_BREAK
|
||||
* \li Action: Breaks the current paragraph at the current location.
|
||||
* \li Notion: Removes the selection.
|
||||
* \li Syntax: paragraph-break [<LAYOUT>]
|
||||
* \li Syntax: paragraph-break [<LAYOUT>] [ignoresep]
|
||||
* \li Params: <LAYOUT>: "inverse" - decreases depth by one (or change layout
|
||||
to default layout) when the cursor is at the end of
|
||||
the line.
|
||||
the line.\n
|
||||
ignoresep: Do not account for paragraph separators while breaking.
|
||||
* \endvar
|
||||
*/
|
||||
{ LFUN_PARAGRAPH_BREAK, "paragraph-break", Noop, Edit },
|
||||
|
@ -1129,9 +1129,9 @@ void Text::dispatch(Cursor & cur, FuncRequest & cmd)
|
||||
Font const f(inherit_font, cur.current_font.language());
|
||||
pars_[cur.pit() - 1].resetFonts(f);
|
||||
} else {
|
||||
if (par.isEnvSeparator(cur.pos()))
|
||||
if (par.isEnvSeparator(cur.pos()) && cmd.getArg(1) != "ignoresep")
|
||||
cur.posForward();
|
||||
breakParagraph(cur, cmd.argument() == "inverse");
|
||||
breakParagraph(cur, cmd.getArg(0) == "inverse");
|
||||
}
|
||||
cur.resetAnchor();
|
||||
// If we have a list and autoinsert item insets,
|
||||
|
Loading…
Reference in New Issue
Block a user