Skip to content
/ forgot Public

A todo list app that indexes your app to find TODO:'s

License

Notifications You must be signed in to change notification settings

OlshaMB/forgot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

forgot

GitHub Workflow Status (branch) GitHub release (latest by date) GitHub

A todo list app that indexes your app to find TODO:'s

Usage

  • to list all your todos
forgot list
  • list all your todos ignoring search in ./target, ./docs, ./licences, ./LICENSE
forgot list -i ./target -i ./docs -i ./licences -i ./LICENSE
  • list all your todos in src directory
forgot list src
  • list all your todos in src directory and display a code line where todo is located after todo item
forgot list src --cl
✔ Rename a to a normal name - todo.txt:1:7
a = b #TODO: Rename a to a normal name
✔ Add string parameter - todo.txt:2:13
fn to_str() #TODO: Add string parameter
  • list all your todos in src directory and display a code line where todo is located replacing todo's content
forgot list src --use_cl
 a = b #TODO: Rename a to a normal name - todo.txt1:7
 fn to_str() #TODO: Add string parameter - todo.txt:2:13