1# 2# This file provides a way to skip stepping into Catch code when debugging with lldb. 3# 4# With the setting "target.process.thread.step-avoid-regexp" you can tell lldb 5# to skip functions matching the regexp 6# 7# Basically the following line tells lldb to skip all functions containing the 8# regexp "Catch", which matches the complete Catch namespace. 9# If you want to skip just some parts of the Catch code you can modify the 10# regexp accordingly. 11# 12# If you want to permanently skip stepping into Catch code copy the following 13# line into your ~/.lldbinit file 14# 15 16settings set target.process.thread.step-avoid-regexp Catch