aboutsummaryrefslogtreecommitdiff
path: root/src/libcmd/command.cc
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2022-10-12 15:09:00 +0200
committerEelco Dolstra <edolstra@gmail.com>2022-10-12 15:09:17 +0200
commiteba610956b088e0d881c44189ef3e0d613bbf922 (patch)
tree28fc08cfab163dea4ca54c86154ecdd2b23edcba /src/libcmd/command.cc
parentae2d330455996f5c1099b5accf36ad348b3d5e9b (diff)
Move some options into a misc category
This unclutters the per-command options a bit by moving out some global options.
Diffstat (limited to 'src/libcmd/command.cc')
-rw-r--r--src/libcmd/command.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libcmd/command.cc b/src/libcmd/command.cc
index 14bb27936..1fdd9e0bd 100644
--- a/src/libcmd/command.cc
+++ b/src/libcmd/command.cc
@@ -88,7 +88,8 @@ EvalCommand::EvalCommand()
{
addFlag({
.longName = "debugger",
- .description = "start an interactive environment if evaluation fails",
+ .description = "Start an interactive environment if evaluation fails.",
+ .category = MixEvalArgs::category,
.handler = {&startReplOnEvalErrors, true},
});
}