Plugins: Added completer_remove

This commit is contained in:
James Booth
2016-04-07 21:25:12 +01:00
parent a328367eb4
commit bfdc3b8807
8 changed files with 60 additions and 0 deletions

View File

@@ -160,6 +160,12 @@ api_completer_add(const char *key, char **items)
autocompleters_add(key, items);
}
void
api_completer_remove(const char *key, char **items)
{
autocompleters_remove(key, items);
}
void
api_notify(const char *message, const char *category, int timeout_ms)
{