File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -252,6 +252,23 @@ Ignore a function when doing a source level single step in
252252 Get the default value, make it into a capture group, then add another capture
253253group for the new function name.
254254
255+ You can ignore a function once using:
256+
257+ .. code-block :: shell
258+
259+ (lldb) thread step-in -r ^abc
260+
261+ Or you can do the opposite, only step into functions with a certain name:
262+
263+ .. code-block :: shell
264+
265+ (lldb) sif abc
266+ # Which is equivalent to:
267+ (lldb) thread step-in -t abc
268+
269+ ``thread step-in `` has more options which cover some of ``skip ``'s other
270+ features. See ``help thread step-in `` for details.
271+
255272Do a source level single step over in the currently selected thread
256273~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
257274
You can’t perform that action at this time.
0 commit comments