Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/waymondo/org-repo-todo
Simple repository todo management with org-mode
https://github.com/waymondo/org-repo-todo
Last synced: about 2 months ago
JSON representation
Simple repository todo management with org-mode
- Host: GitHub
- URL: https://github.com/waymondo/org-repo-todo
- Owner: waymondo
- Created: 2014-02-05T03:43:19.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2017-12-28T01:20:00.000Z (about 7 years ago)
- Last Synced: 2024-04-28T01:30:02.008Z (9 months ago)
- Language: Emacs Lisp
- Size: 7.81 KB
- Stars: 21
- Watchers: 4
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![MELPA](http://melpa.org/packages/org-repo-todo-badge.svg)](http://melpa.org/#/org-repo-todo)
[![MELPA Stable](http://stable.melpa.org/packages/org-repo-todo-badge.svg)](http://stable.melpa.org/#/org-repo-todo)This is a simple package for capturing and visiting todo items for the
repository you are currently within. Under the hood it uses `org-capture`
to provide a popup window for inputting `org-mode` [checkbox list items](http://orgmode.org/manual/Checkboxes.html)
or regular `** TODO` items that get saved to a `TODO.org` file in the root of the repository.#### Installation
Install from [MELPA](melpa.milkbox.net) with `package-install org-repo-todo`, or drop `org-repo-todo.el` into your load path.
#### Usage
Set the functions to keybindings of your choice, i.e.:
```
(global-set-key (kbd "C-;") 'ort/capture-todo)
(global-set-key (kbd "C-'") 'ort/capture-checkitem)
(global-set-key (kbd "C-`") 'ort/goto-todos)
```#### Config
###### `ort/prefix-arg-directory`
This is the alternate directory to capture to and visit when using the `C-u` prefix. The default value is `user-emacs-directory`.