blob: ef5e0dc0acd4d75697fffb2ecd3dd65640ce2d45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
struct commands;
/**
* Abort a replace currently in progress.
*/
void abort_replace(void);
/**
* Abort a search currently in progress.
*/
void abort_search(void);
/**
* Register search and replace commands
*
* @param [in] commands Command registry to register search and
* replace commands in.
*/
void register_search_replace_commands(struct commands *commands);
/**
* Clear persistent search and replace data.
*/
void cleanup_search_replace(void);
|