Compare commits

..

1 Commits

Author SHA1 Message Date
Sergio Martínez Portela
95fea80f90 Refactor headline state parsing.
Some checks failed
Testing / pytest (push) Failing after 38s
Testing / mypy (push) Failing after 34s
Testing / stability-extra-test (push) Failing after 26s
- Add separate function to parse states.
- Handle edge case when no `|` is used to split TODO and DONE states.
- Add typing to the states to future-proof for handling keyboard shortcuts and actions on state changes.
2024-07-20 17:29:25 +02:00

View File

@ -1768,16 +1768,16 @@ def parse_headline(hl, doc, parent) -> Headline:
title = line title = line
is_done = is_todo = False is_done = is_todo = False
for state in doc.todo_keywords or []: for state in doc.todo_keywords or []:
if title.startswith(state['name'] + " "): if title.startswith(state + " "):
hl_state = state hl_state = state
title = title[len(state['name'] + " ") :] title = title[len(state + " ") :]
is_todo = True is_todo = True
break break
else: else:
for state in doc.done_keywords or []: for state in doc.done_keywords or []:
if title.startswith(state['name'] + " "): if title.startswith(state + " "):
hl_state = state hl_state = state
title = title[len(state['name'] + " ") :] title = title[len(state + " ") :]
is_done = True is_done = True
break break
@ -1993,7 +1993,7 @@ class OrgDoc:
state = "" state = ""
if headline.state: if headline.state:
state = headline.state['name'] + " " state = headline.state + " "
raw_title = token_list_to_raw(headline.title.contents) raw_title = token_list_to_raw(headline.title.contents)
tags_padding = "" tags_padding = ""