]> git.lyx.org Git - features.git/commitdiff
Add Georg's comments from #8749.
authorPavel Sanda <sanda@lyx.org>
Sun, 17 Nov 2013 19:11:03 +0000 (11:11 -0800)
committerPavel Sanda <sanda@lyx.org>
Sun, 17 Nov 2013 19:11:03 +0000 (11:11 -0800)
src/LyXAction.cpp

index 3a8de5fa2effb142e4b251ff291df0d17098940b..f1f99dce7bc14c0ff8acb36dca3833c6506fe3b5 100644 (file)
@@ -1222,7 +1222,13 @@ void LyXAction::init()
                { LFUN_PASTE, "paste", Noop, Edit },
 /*!
  * \var lyx::FuncCode lyx::LFUN_CLIPBOARD_PASTE
- * \li Action: Pastes text from the active clipboard.
+ * \li Action: Pastes text from the active clipboard. Pastes plain text if plain text is
+               on the clipboard, but tries to interpret it in special ways for certain
+               insets, e.g. converting csv data to rows and colums if tha paste happens
+               in a tabular inset.
+ * \li Notion: Historically, LFUN_CLIPBOARD_PASTE was introduced as a counterpart of
+               LFUN_PRIMARY_SELECTION_PASTE: It behaved exactly the same, but the source
+               is the clipboard, not the selection.
  * \li Syntax: clipboard-paste [<ARG>]
  * \li Params: <ARG>: "paragraph" will cause pasting as one paragraph, i.e. "Join lines".
  * \li Origin: Georg, 10 Jul 2006
@@ -1250,7 +1256,8 @@ void LyXAction::init()
                { LFUN_SELECTION_PASTE, "selection-paste", Noop, Edit },
 /*!
  * \var lyx::FuncCode lyx::LFUN_CLIPBOARD_PASTE_SIMPLE
- * \li Action: Pastes simple unformatted text from the active clipboard.
+ * \li Action: Pastes simple unformatted text from the active clipboard even
+               if formatted LyX content is in the clipboard.
  * \li Syntax: clipboard-paste-simple [<ARG>]
  * \li Params: <ARG>: "paragraph" will cause pasting as one paragraph, i.e. "Join lines".
  * \endvar