diff options
Diffstat (limited to '')
| -rw-r--r-- | include/completion/CommandsModel.hpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/completion/CommandsModel.hpp b/include/completion/CommandsModel.hpp index 28836fe..4f64654 100644 --- a/include/completion/CommandsModel.hpp +++ b/include/completion/CommandsModel.hpp @@ -9,11 +9,13 @@ struct Command { QString description; }; +// TODO: Combine commands model completion and commands evaluation const QList<Command> commands = { - {.name = "open", .description = "Open a url in the current tab"}, + {.name = "open", .description = "Update current URL"}, + {.name = "tabs", .description = "Select a tab"}, {.name = "tabopen", .description = "Open a url in a new tab"}, {.name = "tabnext", .description = "Go to next tab"}, - {.name = "tabbprev", .description = "Go to previous tab"}, + {.name = "tabprev", .description = "Go to previous tab"}, }; class CommandsModel : public QAbstractListModel { |
