summaryrefslogtreecommitdiff
path: root/src/main/search-replace.h
blob: 16869fc5557656f3b4d43266a3e06e6ea8590ab6 (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();

/**
 * 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);