new LFUN_WORD_REPLACE and LFUN_WORD_FIND

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8317 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2004-01-07 15:09:51 +00:00
parent 33b7e61bff
commit a16452bc34
2 changed files with 6 additions and 1 deletions

View File

@ -323,6 +323,8 @@ void LyXAction::init()
{ LFUN_PARAGRAPH_UPDATE, "", Noop },
{ LFUN_EXTERNAL_EDIT, "external-edit", Noop },
{ LFUN_REPEAT, "repeat", NoBuffer },
{ LFUN_WORD_FIND, "word-find", Noop },
{ LFUN_WORD_REPLACE, "word-replace", Noop },
{ LFUN_NOACTION, "", Noop }
};

View File

@ -331,8 +331,11 @@ enum kb_action {
LFUN_FINISHED_UP,
LFUN_FINISHED_DOWN,
LFUN_INSERT_CHARSTYLE,
LFUN_LASTACTION // end of the table
LFUN_WORD_FIND,
// 255
LFUN_WORD_REPLACE,
LFUN_LASTACTION // end of the table
};
std::ostream & operator<<(std::ostream &, kb_action);