diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-03-15 19:17:03 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-03-15 20:08:30 +0530 |
| commit | 387cf24e389854ecc97f6236fdd6acbc2486dd52 (patch) | |
| tree | a51b51de0064fb10685d2da85d11748c4a32ce73 /src/CommandParser.cpp | |
| parent | 05ae8976a8e1ab5411058de244c4e2fcc87ec369 (diff) | |
| download | null-browser-387cf24e389854ecc97f6236fdd6acbc2486dd52.tar.gz null-browser-387cf24e389854ecc97f6236fdd6acbc2486dd52.zip | |
Replaced QCompleter with custom implementation
Diffstat (limited to 'src/CommandParser.cpp')
| -rw-r--r-- | src/CommandParser.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/CommandParser.cpp b/src/CommandParser.cpp index 773d37c..2b9b422 100644 --- a/src/CommandParser.cpp +++ b/src/CommandParser.cpp @@ -30,6 +30,8 @@ CommandType CommandParser::toCommandType(QString cmd) { return TabNext; if (cmd == "tp" || cmd == "tabprev") return TabPrev; + if (cmd == "tabs") + return TabSelect; return Noop; } |
