├── .gitignore ├── LICENSE ├── Makefile ├── README.org ├── magit-todos.el ├── makem.sh ├── notes.org └── screenshots ├── branch-list.png ├── emacs-grouped-by-path.png ├── emacs-grouped.png ├── fancy-org.png ├── matrix.png ├── org.png └── thiderman.png /.gitignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | scratch.el 3 | /.sandbox/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapapa/magit-todos/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapapa/magit-todos/HEAD/Makefile -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapapa/magit-todos/HEAD/README.org -------------------------------------------------------------------------------- /magit-todos.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapapa/magit-todos/HEAD/magit-todos.el -------------------------------------------------------------------------------- /makem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapapa/magit-todos/HEAD/makem.sh -------------------------------------------------------------------------------- /notes.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapapa/magit-todos/HEAD/notes.org -------------------------------------------------------------------------------- /screenshots/branch-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapapa/magit-todos/HEAD/screenshots/branch-list.png -------------------------------------------------------------------------------- /screenshots/emacs-grouped-by-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapapa/magit-todos/HEAD/screenshots/emacs-grouped-by-path.png -------------------------------------------------------------------------------- /screenshots/emacs-grouped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapapa/magit-todos/HEAD/screenshots/emacs-grouped.png -------------------------------------------------------------------------------- /screenshots/fancy-org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapapa/magit-todos/HEAD/screenshots/fancy-org.png -------------------------------------------------------------------------------- /screenshots/matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapapa/magit-todos/HEAD/screenshots/matrix.png -------------------------------------------------------------------------------- /screenshots/org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapapa/magit-todos/HEAD/screenshots/org.png -------------------------------------------------------------------------------- /screenshots/thiderman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapapa/magit-todos/HEAD/screenshots/thiderman.png --------------------------------------------------------------------------------