Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1""" 

2@file 

3@brief Regular expressions. 

4""" 

5 

6_setup_pattern_copy_exts = ['ico', '7z', 'dll', 'so', 'yml', 'rst', 'ipynb', 'gif', 'jpg', 'jpeg', 'png', 'txt', 

7 'zip', 'gz', 'html', 'exe', 'js', 'css', 'tex', 'data', 'csv', 'tpl', 

8 'tmpl'] 

9_setup_pattern_copy = ".*[.]({0})$".format('|'.join('({0})'.format(_) 

10 for _ in _setup_pattern_copy_exts))