You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: llvm/docs/ReleaseNotes.md
+28Lines changed: 28 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -358,6 +358,34 @@ Changes to LLDB
358
358
359
359
* 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).
360
360
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...
0 commit comments