~swflint/time-block-command

e0dcf6eb13871df41b081b9cdaadced722c3ba54 — Samuel W. Flint 1 year, 9 months ago 518aa48 1.2.2
Update some documentation
1 files changed, 11 insertions(+), 4 deletions(-)

M time-block.el
M time-block.el => time-block.el +11 -4
@@ 2,7 2,7 @@

;; Author: Samuel W. Flint <swflint@flintfam.org>
;; URL: https://git.sr.ht/~swflint/time-block
;; Version: 1.2.1
;; Version: 1.2.2
;; Package-Requires: ((emacs "25.1") (ts "0.1"))
;; Keywords: tools, productivity, convenience
;; SPDX-FileCopyrightText: 2022 Samuel W. Flint <swflint@flintfam.org>


@@ 112,8 112,11 @@
;; Variables:

(defgroup time-block ()
  "Variables controlling `time-block' functionality."
  :group 'applications)
  "Block running groups of commands using the current day and time."
  :group 'applications
  :link '(url-link :tag "Homepage" "https://git.sr.ht/~swflint/time-block-command")
  :link '(emacs-library-link :tag "Library Source" "time-block.el")
  :prefix "time-block-")

(defcustom time-block-groups nil
  "Define time blocking groups.


@@ 145,7 148,11 @@ Saturday   6"
(make-obsolete-variable 'time-block-command-groups 'time-block-groups "time-block 0.1.0")

(defcustom time-block-skip-on-holidays-p nil
  "If t skip checking for time blocking on holidays.  Default to nil."
  "How holidays should be skipped when blocking commands.

If nil, no holidays will be skipped; if t, all holidays will be
skipped; if a list, only those holidays in the list will be
skipped; if a regexp, only holidays matching will be skipped."
  :group 'time-block
  :type '(choice (const :tag "Continue blocking on holidays" nil)
                 (regexp :tag "Matching regexp")