To-do list window like Visual Studio

Visual Studio has a feature that finds all “TODO” comments in your project and lists them in a convenient window. I’m wondering if anyone other than me would actually use this? Of course, you can do it with a plugin or otherwise, but it is nice to integrate into the IDE.

(please note that I’m not saying I’m going to implement this myself; I’m a VR guy!)

27 Likes

I’d certainly use it

3 Likes

I would use this quite often as well.

1 Like

I already put TODO in my code to use with find the find tool for later. A separate window will definitely help if I forget what scripts have them.

I would love this

I would love to have this. I always write todo’s in my code but i often forget that i placed them.

I’m down for this idea but… noone else here uses post-its?

1 Like

It’s useful if you have a long-running project :stuck_out_tongue:

You could do both, if more people voted for this trello card.

3 Likes

Oh man, I bet that’d be a ton of fun to rig up with Qt. :stuck_out_tongue:

10/10 would use

I have a stickynote for this on my desktop that is covering up my waifu wallpaper

this would be very handy as I would like to see my waifu entirely thx

This would help so much since my other monitor broke

Please do it!

I only think it would be useful for me if it was capable of detecting TODO comments in the source. Otherwise, I would just use Trello.
Nevermind. Reading the OP properly this time, it is a great idea.

Someone could probably make a dope plugin

The downside to a plugin is you can’t view it while you’re editing the script since plugins can’t create extra panes. We could do that and create super amazing plugins though…

1 Like

I use TODO all the time in Studio! I just Ctr+Shiftl+F: “TODO” and search the list.

See, that definitely works… but the problem is reminding myself to actually do it! Maybe it doesn’t warrant such an addition to Studio, but it wouldn’t hurt!

You worked on the search feature did you not? How about allowing plugins to perform a search that the user can see?

With this the plugin could easily be made.

When I was developing a plugin recently (camera waypoint plugin), I left some TODO statements in there that I forgot about until just now. It would have been helpful to have been reminded of them sooner e.g. somewhere in studio it said 10 TODO objectives or something. Not sure if this would provide a similar effect or not.

Plugins can’t display anything in the script editor window. You could just use script.Source. It doesn’t update while the script editor is open, but neither could a plugin since it can only do stuff inside the render window. Either way, this needs to be something that is visible in the script editor – plugins aren’t cut out for it yet.