6

Is there a way a do it in Notepad++, as in Eclipse?

bks
  • 231

4 Answers4

8

if you have inline todos in your code like

// TODO: remember to fix this.

then you can use this plugin for notepad++ http://code.google.com/p/npp-task-list/.

Best
  • 181
2

I'm not sure if there are any plugins for Notepad++ for this, for a time I did something similar to this: Geakz (Site down 2016-07-29) But now I use Stickies

Burgi
  • 6,768
Pulse
  • 4,589
  • 2
  • 21
  • 20
1

NPP plugin for task list is sounding and kicking (aka alive!) https://github.com/Megabyteceer/npp-task-list but with the poor help/documentation, scattered online:

https://community.notepad-plus-plus.org/topic/17381/npp-task-list-plugin/6 - describes config file & keywords

look for the npp_task_list.cfg file into: C:\Program Files (x86)\Notepad++\plugins\Config\ for 32 bit notepad++ or C:\Program Files\Notepad++\plugins\Config\ for 64 bit notepad++ versions.

keywords= TODO: BUG: FIX: REFACTOR: DONE: INFO:

https://www.ilovefreesoftware.com/27/windows/task-list-notepad-todo-task-list-plugin.html - general info

enter image description here

AndriuZ
  • 229
0

This plugin is what you were looking for : Task list

https://notepad-plus-plus.org/community/topic/31/task-list

Jiwon
  • 143