[Lldb-commits] [lldb] [lldb] Add fzf_history command to examples (PR #128571)
Dave Lee via lldb-commits
lldb-commits at lists.llvm.org
Mon Feb 24 14:19:50 PST 2025
================
@@ -0,0 +1,100 @@
+import os
+import re
+import sys
+import subprocess
+
+import lldb
+
+
+ at lldb.command()
+def fzf_history(debugger, cmdstr, ctx, result, _):
+ """Use fzf to search and select from lldb command history."""
+ if sys.platform != "darwin":
+ result.SetError("fzf_history supports macOS only")
----------------
kastiglione wrote:
https://github.com/llvm/llvm-project/pull/128571#issuecomment-2679790655
https://github.com/llvm/llvm-project/pull/128571
More information about the lldb-commits
mailing list