From 57c78334151de945d8dfbed87a7271b0127e01f2 Mon Sep 17 00:00:00 2001 From: Pavel Sanda Date: Sun, 8 Jun 2008 15:18:57 +0000 Subject: [PATCH] Next easy target. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25194 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/LyXAction.cpp | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/src/LyXAction.cpp b/src/LyXAction.cpp index 83145469c5..defefc4651 100644 --- a/src/LyXAction.cpp +++ b/src/LyXAction.cpp @@ -947,11 +947,37 @@ void LyXAction::init() */ { LFUN_BUFFER_END_SELECT, "buffer-end-select", ReadOnly, Edit }, +/*! + * \var lyx::FuncCode lyx::LFUN_LINE_BEGIN + * \li Action: Move the cursor to the begining of the (screen) line. + * \li Syntax: line-begin + * \endvar + */ { LFUN_LINE_BEGIN, "line-begin", ReadOnly | NoUpdate, Edit }, +/*! + * \var lyx::FuncCode lyx::LFUN_LINE_BEGIN_SELECT + * \li Action: Move the cursor to the beginning of the (screen) line adding the + traversed text to the selection. + * \li Syntax: line-begin-select + * \endvar + */ { LFUN_LINE_BEGIN_SELECT, "line-begin-select", ReadOnly | SingleParUpdate, Edit }, - { LFUN_LINE_DELETE, "line-delete-forward", Noop, Edit }, // there is no line-delete-backward +/*! + * \var lyx::FuncCode lyx::LFUN_LINE_END + * \li Action: Move the cursor to the end of the (screen) line. + * \li Syntax: line-end + * \endvar + */ { LFUN_LINE_END, "line-end", ReadOnly | NoUpdate, Edit }, +/*! + * \var lyx::FuncCode lyx::LFUN_LINE_END_SELECT + * \li Action: Move the cursor to the end of the (screen) line adding the + traversed text to the selection. + * \li Syntax: line-end-select + * \endvar + */ { LFUN_LINE_END_SELECT, "line-end-select", ReadOnly | SingleParUpdate, Edit }, + { LFUN_LINE_DELETE, "line-delete-forward", Noop, Edit }, // there is no line-delete-backward /*! * \var lyx::FuncCode lyx::LFUN_COPY * \li Action: Copies to the clipboard the last edit. -- 2.39.2