Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio 2012 Task List for JavaScript

Is it possible to add tasks (Todos, hackes, etc) to the task list via Comments. (For javascript files)

Similar to the functions explained here:

  • http://code-inside.de/blog-in/2008/11/19/howto-taskmanagement-with-visual-studio-todos-hacks-co/
  • http://www.youtube.com/watch?v=l47g7_Qe8HE&feature=player_embedded

The menu points in the second video only apply to Visual Studio 2012.

like image 781
Stefan Avatar asked Feb 06 '13 15:02

Stefan


1 Answers

Another option is the excellent Javascript parser extension: http://visualstudiogallery.msdn.microsoft.com/288a2b0f-1357-47b4-8215-1134c36bdf30

I just stumbled on the feature where it supports // TODO: type comments, and you can define your own keywords.

Apparently task list functionality is not available in plain Visual Studio for javascript files.

like image 179
GravityWell Avatar answered Sep 27 '22 23:09

GravityWell