aboutsummaryrefslogtreecommitdiff
path: root/include/completion
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2025-03-12 20:47:57 +0530
committerAkshay Nair <phenax5@gmail.com>2025-03-12 21:06:52 +0530
commit05ae8976a8e1ab5411058de244c4e2fcc87ec369 (patch)
treecb3661ed66b9aeb6b78818228d4ec4785dbf27e1 /include/completion
parentd46cf6e12452261c6aaf498dddf8e1176d349d6e (diff)
downloadnull-browser-05ae8976a8e1ab5411058de244c4e2fcc87ec369.tar.gz
null-browser-05ae8976a8e1ab5411058de244c4e2fcc87ec369.zip
Refactor MainWindow into InputMediator
Diffstat (limited to 'include/completion')
-rw-r--r--include/completion/CommandsModel.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/completion/CommandsModel.hpp b/include/completion/CommandsModel.hpp
index 6cb25f9..28836fe 100644
--- a/include/completion/CommandsModel.hpp
+++ b/include/completion/CommandsModel.hpp
@@ -12,8 +12,8 @@ struct Command {
const QList<Command> commands = {
{.name = "open", .description = "Open a url in the current tab"},
{.name = "tabopen", .description = "Open a url in a new tab"},
- {.name = "bnext", .description = "Go to next tab"},
- {.name = "bprev", .description = "Go to previous tab"},
+ {.name = "tabnext", .description = "Go to next tab"},
+ {.name = "tabbprev", .description = "Go to previous tab"},
};
class CommandsModel : public QAbstractListModel {