Work on marks (WIP)
This commit is contained in:
parent
2790a34b00
commit
d972136b3b
2 changed files with 50 additions and 8 deletions
28
README.md
28
README.md
|
@ -1,3 +1,31 @@
|
||||||
Taskwarrior.el
|
Taskwarrior.el
|
||||||
==============
|
==============
|
||||||
An emacs frontend for taskwarrior.
|
An emacs frontend for taskwarrior.
|
||||||
|
|
||||||
|
|
||||||
|
Annotations
|
||||||
|
-----------
|
||||||
|
Taskwarrior already has the option to add annotations to a task.
|
||||||
|
|
||||||
|
(taskwarrior-create-task-from-dired-file)
|
||||||
|
(taskwarrior-create-task-from-mu4e-mail)
|
||||||
|
|
||||||
|
Capture Templates
|
||||||
|
-----------------
|
||||||
|
With taskwarrior you often spending way to many keystrokes on capturing metadata around a new task
|
||||||
|
(Especially if you are a heavy user of UDA's). Capture templates to the rescue:
|
||||||
|
|
||||||
|
```
|
||||||
|
(taskwarrior-capture
|
||||||
|
"Work task"
|
||||||
|
"context:work customer:? project:?)
|
||||||
|
```
|
||||||
|
|
||||||
|
The `?` automatically present autocompletion options based on `task _unique` in case of UDA or `task _...`
|
||||||
|
|
||||||
|
|
||||||
|
Review
|
||||||
|
------
|
||||||
|
Quiet often you want to review a list of different
|
||||||
|
(taskwarrior-review
|
||||||
|
'("contex:work" "context:school")
|
||||||
|
|
|
@ -19,7 +19,8 @@
|
||||||
"Taskwarrior mode face used for tasks with a priority of C.")
|
"Taskwarrior mode face used for tasks with a priority of C.")
|
||||||
|
|
||||||
(setq taskwarrior-highlight-regexps
|
(setq taskwarrior-highlight-regexps
|
||||||
`(("^[0-9]*" . font-lock-variable-name-face)
|
`(("^\\*.*$" . font-lock-variable-name-face)
|
||||||
|
("^ [0-9]*" . font-lock-variable-name-face)
|
||||||
("([0-9.]*?)" . font-lock-builtin-face)
|
("([0-9.]*?)" . font-lock-builtin-face)
|
||||||
("\\[.*\\]" . font-lock-preprocessor-face)
|
("\\[.*\\]" . font-lock-preprocessor-face)
|
||||||
("[:space:].*:" . font-lock-function-name-face)))
|
("[:space:].*:" . font-lock-function-name-face)))
|
||||||
|
@ -45,6 +46,13 @@
|
||||||
(define-key taskwarrior-mode-map (kbd "RET") 'taskwarrior-info)
|
(define-key taskwarrior-mode-map (kbd "RET") 'taskwarrior-info)
|
||||||
(define-key taskwarrior-mode-map (kbd "P") 'taskwarrior-change-project))
|
(define-key taskwarrior-mode-map (kbd "P") 'taskwarrior-change-project))
|
||||||
|
|
||||||
|
|
||||||
|
(defun test ()
|
||||||
|
(interactive)
|
||||||
|
(let ((line (thing-at-point 'line t)))
|
||||||
|
(string-match (rx "* 1"))
|
||||||
|
(string-trim-left (match-string 0 line))))
|
||||||
|
|
||||||
(defun taskwarrior--display-task-details-in-echo-area ()
|
(defun taskwarrior--display-task-details-in-echo-area ()
|
||||||
(let* ((id (taskwarrior-id-at-point))
|
(let* ((id (taskwarrior-id-at-point))
|
||||||
(task (taskwarrior-export-task id))
|
(task (taskwarrior-export-task id))
|
||||||
|
@ -71,9 +79,16 @@
|
||||||
(defun taskwarrior-mark-task ()
|
(defun taskwarrior-mark-task ()
|
||||||
(interactive)
|
(interactive)
|
||||||
(let ((id (taskwarrior-id-at-point)))
|
(let ((id (taskwarrior-id-at-point)))
|
||||||
|
(progn
|
||||||
(if (local-variable-p 'taskwarrior-marks)
|
(if (local-variable-p 'taskwarrior-marks)
|
||||||
(setq-local taskwarrior-marks (delete-dups (cons id taskwarrior-marks)))
|
(setq-local taskwarrior-marks (delete-dups (cons id taskwarrior-marks)))
|
||||||
(setq-local taskwarrior-marks (list id)))))
|
(setq-local taskwarrior-marks (list id))))
|
||||||
|
(save-excursion
|
||||||
|
(read-only-mode -1)
|
||||||
|
(beginning-of-line)
|
||||||
|
(insert "*")
|
||||||
|
(read-only-mode 1))))
|
||||||
|
|
||||||
|
|
||||||
(defun taskwarrior-info ()
|
(defun taskwarrior-info ()
|
||||||
(interactive)
|
(interactive)
|
||||||
|
@ -86,7 +101,7 @@
|
||||||
(defun taskwarrior-id-at-point ()
|
(defun taskwarrior-id-at-point ()
|
||||||
(let ((line (thing-at-point 'line t)))
|
(let ((line (thing-at-point 'line t)))
|
||||||
(string-match "^ [0-9]*" line)
|
(string-match "^ [0-9]*" line)
|
||||||
(match-string 0 line)))
|
(string-trim-left (match-string 0 line))))
|
||||||
|
|
||||||
(defun taskwarrior--get-filter-as-string ()
|
(defun taskwarrior--get-filter-as-string ()
|
||||||
(if (local-variable-p 'taskwarrior-active-filters)
|
(if (local-variable-p 'taskwarrior-active-filters)
|
||||||
|
@ -221,7 +236,6 @@ the front and focus it. Otherwise, create one and load the data."
|
||||||
(interactive)
|
(interactive)
|
||||||
(let ((filter (taskwarrior--get-filter-as-string)))
|
(let ((filter (taskwarrior--get-filter-as-string)))
|
||||||
(progn
|
(progn
|
||||||
(goto-char (point-min))
|
|
||||||
(read-only-mode -1)
|
(read-only-mode -1)
|
||||||
(erase-buffer)
|
(erase-buffer)
|
||||||
(taskwarrior-load-tasks (concat "1-1000 " filter))
|
(taskwarrior-load-tasks (concat "1-1000 " filter))
|
||||||
|
|
Loading…
Reference in a new issue