This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# A recursive description of keyWindow or passed UIView as an argument. | |
command regex rd 's/^[[:space:]]*$/po [[[UIApplication sharedApplication] keyWindow] recursiveDescription]/' 's/^(.+)$/po [%1 recursiveDescription]/' | |
# A description of core foundation CGPathRef. | |
command regex path_print 's/(.+)/print (void)CGPathPrint(%1, 0)/' | |
# Auto layout trace of keyWindow or passed UIView as an argument. | |
command regex altrace 's/^[[:space:]]*$/po [[UIApp keyWindow] _autolayoutTrace]/' 's/^(.+)$/po [%1 _autolayoutTrace]/' | |
# Auto layout print of UIView's horizontal constraints. |