blob: d0b20124ec31143f713207c1dfc8a3527c5c81b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
struct commands;
/**
* Abort a replace currently in progress.
*/
void abort_replace();
/**
* 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);
|