6

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

bks
  • 231
  • 1
  • 3
  • 10

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
  • 1
  • 3
  • Eventually, that's how i do it. thank you sir! – bks May 25 '13 at 12:12
  • 2
    Seems dead. Plugin no longer installs on current NPP. And [the "npp-task-list" project seems to have been abandoned early 2015](https://code.google.com/archive/p/npp-task-list/issues/21). Pity. – StackzOfZtuff Nov 24 '16 at 07:22
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,493
  • 14
  • 39
  • 52
Pulse
  • 4,523
  • 2
  • 19
  • 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
  • 219
  • 1
  • 16
0

This plugin is what you were looking for : Task list

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

Jiwon
  • 143
  • 4
  • You should add a bit more to your answer on why this is what OP is looking for. Quote a list of features, maybe include a screenshot, and so on. – confetti Aug 16 '18 at 10:30