X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FLyXAction.cpp;h=e9f45f58e23b316cd94c8eded60ea95f0f1fae7f;hb=c1ee1bc0baf00a64734ec5eb345884c057e4d9c1;hp=3cccc3787e1571cdec37751cadbc27d4736909e3;hpb=299242bb16e2fdd026ac975e8ac4d81e8dfef890;p=lyx.git diff --git a/src/LyXAction.cpp b/src/LyXAction.cpp index 3cccc3787e..e9f45f58e2 100644 --- a/src/LyXAction.cpp +++ b/src/LyXAction.cpp @@ -1093,7 +1093,7 @@ void LyXAction::init() * \var lyx::FuncCode lyx::LFUN_CHAR_DELETE_BACKWARD * \li Action: Deletes one character in the backward direction (usually the "BackSpace" key). * \li Syntax: char-delete-backward [force] - * \li Params: force: Delete big insets, do no only select them. + * \li Params: force: Delete big insets, do not only select them. * \endvar */ { LFUN_CHAR_DELETE_BACKWARD, "char-delete-backward", SingleParUpdate, Edit }, @@ -1102,7 +1102,7 @@ void LyXAction::init() * \var lyx::FuncCode lyx::LFUN_CHAR_DELETE_FORWARD * \li Action: Deletes one character in the backward direction (usually the "Delete" key). * \li Syntax: char-delete-forward [force] - * \li Params: force: Delete big insets, do no only select them. + * \li Params: force: Delete big insets, do not only select them. * \endvar */ { LFUN_CHAR_DELETE_FORWARD, "char-delete-forward", SingleParUpdate, Edit }, @@ -1749,6 +1749,15 @@ void LyXAction::init() */ { LFUN_FONT_STRIKEOUT, "font-strikeout", Noop, Layout }, +/*! + * \var lyx::FuncCode lyx::LFUN_FONT_CROSSOUT + * \li Action: Toggles xout (cross-through) in the font (selection-wise). + * \li Syntax: font-crossout + * \li Origin: uwestoehr, 4 April 2017 + * \endvar + */ + { LFUN_FONT_CROSSOUT, "font-crossout", Noop, Layout }, + /*! * \var lyx::FuncCode lyx::LFUN_FONT_TYPEWRITER * \li Action: Toggles the typewriter family font (selection-wise). @@ -2022,7 +2031,7 @@ void LyXAction::init() matches all note insets, while "Note:Note" only matches LyX yellow note insets. * \li Sample: Remove all index insets: \n - inset-forall Index char-delete-forward \n + inset-forall Index char-delete-forward force \n Close all Notes (also works for a particular branch, for example): \n inset-forall Note inset-toggle close \n Transform all yellow notes to comments \n @@ -3262,6 +3271,7 @@ void LyXAction::init() /*! * \var lyx::FuncCode lyx::LFUN_REPEAT * \li Action: Repeat the given command. + * \li Notion: fails when the repeat count is greater than 10000. * \li Syntax: repeat * \li Origin: Andre, 27 Oct 2003 * \endvar @@ -3522,8 +3532,9 @@ void LyXAction::init() * \var lyx::FuncCode lyx::LFUN_SPECIALCHAR_INSERT * \li Action: Inserts various characters into the document. * \li Syntax: specialchar-insert - * \li Params: : hyphenation, ligature-break, slash, nobreakdash, dots, - end-of-sentence, menu-separator, lyx, tex, latex, latex2e. + * \li Params: : hyphenation, allowbreak, ligature-break, slash, + nobreakdash, dots, end-of-sentence, menu-separator, + lyx, tex, latex, latex2e. * \li Origin: JSpitzm, 6 Dec 2007 * \endvar */ @@ -4022,7 +4033,7 @@ void LyXAction::init() * \var lyx::FuncCode lyx::LFUN_WORD_DELETE_BACKWARD * \li Action: Deletes characters to the beginning of the word (usually the "C+BackSpace" key). * \li Syntax: word-delete-backward [force] - * \li Params: force: Delete big insets, do no only select them. + * \li Params: force: Delete big insets, do not only select them. * \endvar */ { LFUN_WORD_DELETE_BACKWARD, "word-delete-backward", Noop, Edit }, @@ -4031,7 +4042,7 @@ void LyXAction::init() * \var lyx::FuncCode lyx::LFUN_WORD_DELETE_FORWARD * \li Action: Deletes characters to the end of the word (usually the "C+Delete" key). * \li Syntax: word-delete-forward [force] - * \li Params: force: Delete big insets, do no only select them. + * \li Params: force: Delete big insets, do not only select them. * \endvar */ { LFUN_WORD_DELETE_FORWARD, "word-delete-forward", Noop, Edit },