Add ability to specify filter profiles
This name for this might change in the future.
This commit is contained in:
parent
092fdc75a8
commit
7e1a1d1bc3
1 changed files with 14 additions and 0 deletions
|
@ -16,6 +16,9 @@
|
|||
(defvar taskwarrior-description 'taskwarrior-description
|
||||
"Taskwarrior mode face used for tasks with a priority of C.")
|
||||
|
||||
(defvar taskwarrior-profile-alist 'taskwarrior-profile-alist
|
||||
"A list of named filters in the form an associative list.")
|
||||
|
||||
(defface taskwarrior-priority-high-face
|
||||
'((((min-colors 88) (class color))
|
||||
(:foreground "red1"))
|
||||
|
@ -76,6 +79,7 @@
|
|||
(define-key taskwarrior-mode-map (kbd "g") 'taskwarrior-update-buffer)
|
||||
(define-key taskwarrior-mode-map (kbd "a") 'taskwarrior-add)
|
||||
(define-key taskwarrior-mode-map (kbd "d") 'taskwarrior-done)
|
||||
(define-key taskwarrior-mode-map (kbd "l") 'taskwarrior-load-profile)
|
||||
(define-key taskwarrior-mode-map (kbd "o") 'taskwarrior-open-annotation)
|
||||
(define-key taskwarrior-mode-map (kbd "D") 'taskwarrior-delete)
|
||||
(define-key taskwarrior-mode-map (kbd "m") 'taskwarrior-mark-task)
|
||||
|
@ -101,6 +105,16 @@
|
|||
(when due
|
||||
(message "Due: %s | %i Annotations" due annotation-count))))
|
||||
|
||||
(defun taskwarrior-load-profile ()
|
||||
(interactive)
|
||||
(let* ((profiles (-map 'car taskwarrior-profile-alist))
|
||||
(profile (completing-read "Profile: " profiles))
|
||||
(filter (cdr (assoc-string profile taskwarrior-profile-alist))))
|
||||
(progn
|
||||
(taskwarrior--set-filter filter)
|
||||
(taskwarrior-update-buffer filter))))
|
||||
|
||||
|
||||
(defun taskwarrior-previous-task ()
|
||||
(interactive)
|
||||
(previous-line)
|
||||
|
|
Loading…
Reference in a new issue