mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
Add missing tab completion for commands (#1754)
adds completion for /usercard, /follow, /unfollow, /ignore, /unignore
This commit is contained in:
parent
15732cb9ba
commit
ddd4a54e0e
1 changed files with 8 additions and 7 deletions
|
@ -23,13 +23,14 @@
|
||||||
#include <QFile>
|
#include <QFile>
|
||||||
#include <QRegularExpression>
|
#include <QRegularExpression>
|
||||||
|
|
||||||
#define TWITCH_DEFAULT_COMMANDS \
|
#define TWITCH_DEFAULT_COMMANDS \
|
||||||
{ \
|
{ \
|
||||||
"/help", "/w", "/me", "/disconnect", "/mods", "/color", "/ban", \
|
"/help", "/w", "/me", "/disconnect", "/mods", "/color", "/ban", \
|
||||||
"/unban", "/timeout", "/untimeout", "/slow", "/slowoff", \
|
"/unban", "/timeout", "/untimeout", "/slow", "/slowoff", \
|
||||||
"/r9kbeta", "/r9kbetaoff", "/emoteonly", "/emoteonlyoff", \
|
"/r9kbeta", "/r9kbetaoff", "/emoteonly", "/emoteonlyoff", \
|
||||||
"/clear", "/subscribers", "/subscribersoff", "/followers", \
|
"/clear", "/subscribers", "/subscribersoff", "/followers", \
|
||||||
"/followersoff", "/user" \
|
"/followersoff", "/user", "/usercard", "/follow", "/unfollow", \
|
||||||
|
"/ignore", "/unignore" \
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
Loading…
Reference in a new issue