sometimes I find my self misusing the `@Deprecated...
# announcements
e
sometimes I find my self misusing the
@Deprecated
annotation just to remind me some critical logic when using a specific variable (in the context of some native code port).. has anyone a better idea?
c
If you use IntelliJ you can type
fixme
+ tab, not sure if that's what you want
e
wait, where? in the comment you mean? And what is with the tab sorry?
h
sorry if i misinterpret your question, but have you considered the
TODO
function?
e
I want the code to work
h
ah.
n
Yeah there's a to-do tab, by default bottom left. (Command + 6) that lists all the TODO: and FIXME: comments you've added. Also when you try to commit your code it will warn you when you still have those tags about.