Add keybinding to update taskwarrior buffer
This commit is contained in:
parent
d1bf77d3b8
commit
e93bc7c805
1 changed files with 2 additions and 0 deletions
|
@ -27,6 +27,7 @@
|
|||
(define-key taskwarrior-mode-map (kbd "n") 'next-line)
|
||||
(define-key taskwarrior-mode-map (kbd "j") 'next-line)
|
||||
(define-key taskwarrior-mode-map (kbd "q") 'quit-window)
|
||||
(define-key taskwarrior-mode-map (kbd "u") 'taskwarrior-update-buffer)
|
||||
(define-key taskwarrior-mode-map (kbd "a") 'taskwarrior-add)
|
||||
(define-key taskwarrior-mode-map (kbd "p") 'taskwarrior-change-project))
|
||||
|
||||
|
@ -82,6 +83,7 @@ the front and focus it. Otherwise, create one and load the data."
|
|||
(taskwarrior-update-buffer))
|
||||
|
||||
(defun taskwarrior-update-buffer ()
|
||||
(interactive)
|
||||
(let* ((buf (get-buffer-create "taskwarrior")))
|
||||
(progn
|
||||
(switch-to-buffer buf)
|
||||
|
|
Loading…
Reference in a new issue