git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25483 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Pavel Sanda 2008-07-07 17:26:07 +00:00
parent 3a2153b287
commit 41e45a8977
2 changed files with 8 additions and 1 deletions

View File

@ -2323,6 +2323,13 @@ void LyXAction::init()
* \endvar
*/
{ LFUN_SERVER_GOTO_FILE_ROW, "server-goto-file-row", ReadOnly, System },
/*!
* \var lyx::FuncCode lyx::LFUN_SERVER_NOTIFY
* \li Action: Sends notify message about the last key-sequence to client.
* \li Notion: This can be used to grab last key-sequence used inside the LyX window.
* \li Syntax: server-notify
* \endvar
*/
{ LFUN_SERVER_NOTIFY, "server-notify", ReadOnly, System },
/*!
* \var lyx::FuncCode lyx::LFUN_SERVER_SET_XY

View File

@ -495,7 +495,7 @@ void Server::callback(string const & msg)
}
// Send a notify messge to a client, called by WorkAreaKeyPress
// Send a notify message to a client, called by WorkAreaKeyPress
void Server::notifyClient(string const & s)
{
pipes_.send("NOTIFY:" + s + "\n");