This is a simple addin to RStudio, which finds all TODO, FIXME, CHANGED etc. comments in your project and shows them as a markers list.
devtools::install_github("dokato/todor")
When you write an R package, sometimes it's useful to note in comments that there is a place for improvement.
simple_function <- function(a, b) {
# TODO in the future it should be multiplication
a + b
}With TODOr, detecting such a places in the forest of code lines is simple. There are several options to do so. You can click at "Addins" button in the top panel and select "Find TODOs" from the list of possible options:
It is also possible to call todor directly from RStudio console:
> todor::todor()or you can call:
> todor::todor(c("TODO"))to limit todor for detecting only "TODO" tags.
Regardless of the option that you have chosen, as a result you should see the Markers tab next to your console window in RStudio.
- FIXME
- TODO
- CHANGED
- IDEA
- HACK
- NOTE
- REVIEW
- BUG
- QUESTION
- COMBAK
- TEMP

