[Lldb-commits] [lldb] Centralize the handling of completion for simple argument lists. (PR #82085)

Alex Langford via lldb-commits lldb-commits at lists.llvm.org
Fri Feb 16 17:37:22 PST 2024


================
@@ -243,7 +243,7 @@ static constexpr CommandObject::ArgumentTableEntry g_argument_table[] = {
     { lldb::eArgTypeLogCategory, "log-category", lldb::CompletionType::eNoCompletion, {}, { nullptr, false }, "The name of a category within a log channel, e.g. all (try \"log list\" to see a list of all channels and their categories." },
     { lldb::eArgTypeLogChannel, "log-channel", lldb::CompletionType::eNoCompletion, {}, { nullptr, false }, "The name of a log channel, e.g. process.gdb-remote (try \"log list\" to see a list of all channels and their categories)." },
     { lldb::eArgTypeMethod, "method", lldb::CompletionType::eNoCompletion, {}, { nullptr, false }, "A C++ method name." },
-    { lldb::eArgTypeName, "name", lldb::eTypeCategoryNameCompletion, {}, { nullptr, false }, "Help text goes here." },
----------------
bulbazord wrote:

Help text DOES go here! :)

https://github.com/llvm/llvm-project/pull/82085


More information about the lldb-commits mailing list