Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions lldb/source/Interpreter/CommandInterpreter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,8 @@ void CommandInterpreter::LoadCommandDictionary() {
std::unique_ptr<CommandObjectRegexCommand> break_regex_cmd_up(
new CommandObjectRegexCommand(
*this, "_regexp-break",
"Set a breakpoint using one of several shorthand formats.",
"Set a breakpoint using one of several shorthand formats, or list "
"the existing breakpoints if no arguments are provided.",
"\n"
"_regexp-break <filename>:<linenum>:<colnum>\n"
" main.c:12:21 // Break at line 12 and column "
Expand All @@ -643,7 +644,10 @@ void CommandInterpreter::LoadCommandDictionary() {
" /break here/ // Break on source lines in "
"current file\n"
" // containing text 'break "
"here'.\n",
"here'.\n"
"_regexp-break\n"
" // List the existing "
"breakpoints\n",
lldb::eSymbolCompletion | lldb::eSourceFileCompletion, false));

if (break_regex_cmd_up) {
Expand Down
Loading