Skip to content

Commit 703f9e8

Browse files
committed
Add FIXME.
1 parent 60c1b3e commit 703f9e8

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Diff for: ftplugin/orgmode/plugins/Todo.py

+5
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
# temporary todo states for differnent orgmode buffers
1212
ORGTODOSTATES = {}
1313

14+
1415
def split_access_key(t):
1516
u"""
1617
:t: todo state
@@ -24,6 +25,7 @@ def split_access_key(t):
2425
v, k = ((t[:idx], t[idx + 1:-1]) if t[idx + 1:-1] else (t, None)) if idx != -1 else (t, None)
2526
return (v, k)
2627

28+
2729
class Todo(object):
2830
u"""
2931
Todo plugin.
@@ -57,6 +59,9 @@ def __init__(self):
5759
def _get_next_state(cls, current_state, all_states,
5860
direction=Direction.FORWARD, interactive=False, next_set=False):
5961
u"""
62+
WTF is going on here!!!
63+
FIXME: reimplement this in a clean way :)
64+
6065
:current_state: the current todo state
6166
:all_states: a list containing all todo states within sublists.
6267
The todo states may contain access keys

0 commit comments

Comments
 (0)