[Lldb-commits] [lldb] [lldb][Docs] Add equivalents of GDB's "skip" to command map (PR #120740)

Dave Lee via lldb-commits lldb-commits at lists.llvm.org
Fri Dec 20 10:37:37 PST 2024


kastiglione wrote:

for anyone interested: I override `s` to take an optional argument, so that it behaves like `sif`. In my .lldbinit:

```
command unalias s
command regex s
s/^$/step/
s/(.+)/sif %1/
```

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


More information about the lldb-commits mailing list