Skip to content

Commit 8bfa87c

Browse files
authored
Release note lldb completion improvements (#117058)
1 parent 685e41e commit 8bfa87c

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

llvm/docs/ReleaseNotes.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -358,6 +358,34 @@ Changes to LLDB
358358

359359
* 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).
360360

361+
* On the command line, LLDB now limits tab completions to your terminal width to avoid wrapping.
362+
363+
Old:
364+
```
365+
Available completions:
366+
_regexp-attach -- Attach to process by ID or name.
367+
_regexp-break -- Set a breakpoint using one of several shorthand
368+
formats.
369+
_regexp-bt -- Show backtrace of the current thread's call sta
370+
ck. Any numeric argument displays at most that many frames. The argument 'al
371+
l' displays all threads. Use 'settings set frame-format' to customize the pr
372+
inting of individual frames and 'settings set thread-format' to customize th
373+
e thread header. Frame recognizers may filter thelist. Use 'thread backtrace
374+
-u (--unfiltered)' to see them all.
375+
_regexp-display -- Evaluate an expression at every stop (see 'help
376+
target stop-hook'.)
377+
378+
```
379+
380+
New:
381+
```
382+
Available completions:
383+
_regexp-attach -- Attach to process by ID or name.
384+
_regexp-break -- Set a breakpoint using one of several shorth...
385+
_regexp-bt -- Show backtrace of the current thread's call ...
386+
_regexp-display -- Evaluate an expression at every stop (see 'h...
387+
```
388+
361389
Changes to BOLT
362390
---------------------------------
363391

0 commit comments

Comments
 (0)