[Lldb-commits] [lldb] [lldb] Add completions for plugin list/enable/disable (PR #147775)
David Peixotto via lldb-commits
lldb-commits at lists.llvm.org
Tue Jul 15 12:43:47 PDT 2025
================
@@ -1321,10 +1321,11 @@ enum CompletionType {
eTypeCategoryNameCompletion = (1ul << 24),
eCustomCompletion = (1ul << 25),
eThreadIDCompletion = (1ul << 26),
+ eManagedPluginCompletion = (1ul << 27),
// This last enum element is just for input validation.
// Add new completions before this element,
// and then increment eTerminatorCompletion's shift value
- eTerminatorCompletion = (1ul << 27)
+ eTerminatorCompletion = (1ul << 28)
----------------
dmpots wrote:
I will follow up with a separate PR to remove it.
https://github.com/llvm/llvm-project/pull/147775
More information about the lldb-commits
mailing list