[Lldb-commits] [lldb] Complete the Implementation of DAP modules explorer. (PR #139934)

John Harrison via lldb-commits lldb-commits at lists.llvm.org
Wed May 14 12:52:51 PDT 2025


================
@@ -244,6 +244,20 @@
         }
       }
     ],
+    "commands": [
+      {
+        "command": "lldb-dap.modules.copyProperty",
+        "title": "Copy Value"
+      }
+    ],
+    "menus": {
+      "view/item/context": [
----------------
ashgti wrote:

Can we also disable the `Copy Value` command from the command prompt?

adding:
```
"commandPalette": [{"command": "lldb-dap.modules.copyProperty", "when": "false"}],
```

Should hide it, since its not useful without the context of a tree view item.

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


More information about the lldb-commits mailing list