├── .dir-locals.el ├── .github └── workflows │ └── compile.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.org └── hl-todo.el /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsius/hl-todo/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.github/workflows/compile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsius/hl-todo/HEAD/.github/workflows/compile.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /*.elc 2 | /*-autoloads.el 3 | /.config.mk 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsius/hl-todo/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsius/hl-todo/HEAD/Makefile -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsius/hl-todo/HEAD/README.org -------------------------------------------------------------------------------- /hl-todo.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsius/hl-todo/HEAD/hl-todo.el --------------------------------------------------------------------------------