# Matches Open SCAD Modules
(?m)     # Set Multiline mode.  Then,
^include # match the literal 'include'
\s+      # and the obligitory whitespace.
\<(?<Include>[^\>]+)\>
