File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
ftplugin/orgmode/liborgmode Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 2525# heading regex
2626REGEX_HEADING = re .compile (
2727 r'^(?P<level>\*+)(\s+(?P<title>.*?))?\s*(\s(?P<tags>:[\w_:@]+:))?$' ,
28- flags = re .U | re . L )
28+ flags = re .U )
2929REGEX_TAG = re .compile (
3030 r'^\s*((?P<title>[^\s]*?)\s+)?(?P<tags>:[\w_:@]+:)$' ,
31- flags = re .U | re . L )
31+ flags = re .U )
3232REGEX_TODO = re .compile (r'^[^\s]*$' )
3333
3434# checkbox regex:
4040OrderListType = [u'.' , u')' ]
4141REGEX_CHECKBOX = re .compile (
4242 r'^(?P<level>\s*)(?P<type>[%s]|([a-zA-Z]|[\d]+)[%s])(\s+(?P<status>\[.\]))?\s*(?P<title>.*)$'
43- % ('' .join (UnOrderListType ), '' .join (OrderListType )), flags = re .U | re . L )
43+ % ('' .join (UnOrderListType ), '' .join (OrderListType )), flags = re .U )
4444
4545
4646class DomObj (object ):
You can’t perform that action at this time.
0 commit comments