diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2018-11-10 23:20:13 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2018-11-23 21:43:14 +0100 |
commit | 8fc78612b58b65587d8e0917c0a01fa1d25f5758 (patch) | |
tree | 9dbca35dd62303bc95a4fcdd44c6c4efcb44fb20 /gnu/packages | |
parent | 87470116e6e6ca306925cc4f57d923ff07bf9dd4 (diff) |
gnu: Add emacs-tracking.
* gnu/packages/emacs.scm (emacs-tracking): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/emacs.scm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index cef70ccae3..8508fb28b6 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -7742,6 +7742,22 @@ activity in channels in the status bar so it stays out of your way unless you want to use it.") (license license:gpl3+))) +(define-public emacs-tracking + (package + (inherit emacs-circe) + (name "emacs-tracking") + (arguments + ;; "tracking.el" is a library extracted from Circe package. It requires + ;; "shorten.el". + `(#:include '("^shorten.el$" "^tracking.el$") + #:tests? #f)) ;tests require buttercup + (home-page "https://github.com/jorgenschaefer/circe/wiki/Tracking") + (synopsis "Buffer tracking library") + (description "@code{tracking.el} provides a way for different modes to +notify the user that a buffer needs attention. The user then can cycle +through them using @key{C-c C-SPC}.") + (license license:gpl3+))) + (define-public emacs-slack (let ((commit "d90395482d26175ce38fd935e978c428be8af9a0") (revision "4")) |