views:

23

answers:

1

How do I add a todo list item in Stani's Python Editor? I think it's something you type in together with the code and it automatically shows up the the todo list panel. However, I do not know the syntax.

+1  A: 

Try

#TODO: Something

(I didn't try it myself)

SLaks
Thanks for the tip :) I experimented with it and found out that adding ! anywhere on the `#TODO` line gives it a priority rank, and shades the item a yellow background (as seen in the Todo panel) `#TODO: I might add this feature` <-- 0 priority`#TODO: Annoying bug !` <-- 1 priority`#TODO: Totally annoying bug !!!! Gotta fix this` <-- 4 priority
Kit