[llvm] Release note lldb completion improvements (PR #117058)
Jonas Devlieghere via llvm-commits
llvm-commits at lists.llvm.org
Wed Nov 20 13:35:02 PST 2024
https://github.com/JDevlieghere created https://github.com/llvm/llvm-project/pull/117058
Release note improvements to editline completion (#116456).
>From 748d8a3dc467328506c80c6f507437d5c4680a7b Mon Sep 17 00:00:00 2001
From: Jonas Devlieghere <jonas at devlieghere.com>
Date: Wed, 20 Nov 2024 13:33:50 -0800
Subject: [PATCH] Release note lldb completion improvements
Release note improvements to editline completion (#116456).
---
llvm/docs/ReleaseNotes.md | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/llvm/docs/ReleaseNotes.md b/llvm/docs/ReleaseNotes.md
index d0b34c5958e02c..dd68d5296376f6 100644
--- a/llvm/docs/ReleaseNotes.md
+++ b/llvm/docs/ReleaseNotes.md
@@ -358,6 +358,34 @@ Changes to LLDB
* LLDB now parses shared libraries in parallel, resulting in an average 2x speedup when attaching (only available on Darwin platforms) and launching (available on all platforms).
+* On the command line, LLDB now limits tab completions to your terminal width to avoid wrapping.
+
+ Old:
+ ```
+ Available completions:
+ _regexp-attach -- Attach to process by ID or name.
+ _regexp-break -- Set a breakpoint using one of several shorthand
+ formats.
+ _regexp-bt -- Show backtrace of the current thread's call sta
+ ck. Any numeric argument displays at most that many frames. The argument 'al
+ l' displays all threads. Use 'settings set frame-format' to customize the pr
+ inting of individual frames and 'settings set thread-format' to customize th
+ e thread header. Frame recognizers may filter thelist. Use 'thread backtrace
+ -u (--unfiltered)' to see them all.
+ _regexp-display -- Evaluate an expression at every stop (see 'help
+ target stop-hook'.)
+
+ ```
+
+ New:
+ ```
+ Available completions:
+ _regexp-attach -- Attach to process by ID or name.
+ _regexp-break -- Set a breakpoint using one of several shorth...
+ _regexp-bt -- Show backtrace of the current thread's call ...
+ _regexp-display -- Evaluate an expression at every stop (see 'h...
+ ```
+
Changes to BOLT
---------------------------------
More information about the llvm-commits
mailing list