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
CLOVIS
11/11/2020, 12:55 PM
If you use IntelliJ you can type
fixme
+ tab, not sure if that's what you want
e
elect
11/11/2020, 12:56 PM
wait, where? in the comment you mean? And what is with the tab sorry?
h
Hans Ellegard
11/11/2020, 1:24 PM
sorry if i misinterpret your question, but have you considered the
TODO
function?
e
elect
11/11/2020, 1:25 PM
I want the code to work
h
Hans Ellegard
11/11/2020, 1:25 PM
ah.
n
Nicholas Bilyk
11/11/2020, 2:08 PM
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.