Make checkdoc happy and apply fill-column

This commit is contained in:
Daniel Borchmann 2025-06-15 18:31:21 +02:00
parent ab9245d58f
commit 90ab0210d0
No known key found for this signature in database
GPG Key ID: 50EA937BF472ADD1

View File

@ -100,42 +100,41 @@ If this path is not set, i.e., is null, no automatic download will happen."
;; NB: some of those files should also be elements of `org-agenda-files', but ;; NB: some of those files should also be elements of `org-agenda-files', but this is not done
;; this is not done automatically. The reason is that automatically changing ;; automatically. The reason is that automatically changing `org-agenda-files' when setting those
;; `org-agenda-files' when setting those variables may conflict with the ;; variables may conflict with the customization of `org-agenda-files' itself. Thus, when setting
;; customization of `org-agenda-files' itself. Thus, when setting one of those ;; one of those variables would update `org-agenda-files' (possibly saving the customiztion), the
;; variables would update `org-agenda-files' (possibly saving the customiztion), ;; original value of `org-agenda-files' would be gone. Conversely, loading the customization for
;; the original value of `org-agenda-files' would be gone. Conversely, loading ;; `org-agenda-files' would overwrite the work done by custom setters. Thus, the only reasonable
;; the customization for `org-agenda-files' would overwrite the work done by ;; thing to do is to not update `org-agenda-files' automatically and leave it to the user to update
;; custom setters. Thus, the only reasonable thing to do is to not update ;; it.
;; `org-agenda-files' automatically and leave it to the user to update it.
(defcustom db/org-default-org-file nil (defcustom db/org-default-org-file nil
"Path to default org-mode file for general use. "Path to default Org mode file for general use.
You may also want to add this file to `org-agenda-files'." You may also want to add this file to `org-agenda-files'."
:group 'personal-settings :group 'personal-settings
:type '(choice (const nil) file)) :type '(choice (const nil) file))
(defcustom db/org-default-work-file nil (defcustom db/org-default-work-file nil
"Path to default org-mode file at work. "Path to default Org mode file at work.
You may also want to add this file to `org-agenda-files'." You may also want to add this file to `org-agenda-files'."
:group 'personal-settings :group 'personal-settings
:type '(choice (const nil) file)) :type '(choice (const nil) file))
(defcustom db/org-default-home-file nil (defcustom db/org-default-home-file nil
"Path to default org-mode file at home. "Path to default Org mode file at home.
You may also want to add this file to `org-agenda-files'." You may also want to add this file to `org-agenda-files'."
:group 'personal-settings :group 'personal-settings
:type '(choice (const nil) file)) :type '(choice (const nil) file))
(defcustom db/org-default-notes-file nil (defcustom db/org-default-notes-file nil
"Path to default org-mode file for notes. "Path to default Org mode file for notes.
You may also want to add this file to `org-agenda-files'." You may also want to add this file to `org-agenda-files'."
:group 'personal-settings :group 'personal-settings
:type '(choice (const nil) file)) :type '(choice (const nil) file))
(defcustom db/org-default-refile-file nil (defcustom db/org-default-refile-file nil
"Path to default org-mode file for capturing. "Path to default `org-mode' file for capturing.
This file is used by `org-agenda' to query for tasks that need to This file is used by `org-agenda' to query for tasks that need to
be refiled, independently of whether it's part of be refiled, independently of whether it's part of
`org-agenda-files' or not. You may still want to add this file `org-agenda-files' or not. You may still want to add this file
@ -166,13 +165,13 @@ in the main agenda view."
("Unicode Lookup" ?U insert-char) ("Unicode Lookup" ?U insert-char)
("Timeline of Day" ?T timeline-tools-format-timeline-of-day) ("Timeline of Day" ?T timeline-tools-format-timeline-of-day)
("Copy template to point" ?C db/org-insert-checklist)) ("Copy template to point" ?C db/org-insert-checklist))
"Mapping of frequently used features to functions implementing "Mapping of frequently used features to functions implementing them.
them. Can be used in application shortcuts such as
`db/helm-shortcuts. Each entry is a list of three items: a Can be used in application shortcuts such as `db/helm-shortcuts. Each
short description, a shortcut character, and the function to entry is a list of three items: a short description, a shortcut
call. Customizing this variable redefines the global character, and the function to call. Customizing this variable
`hydra-feature-shortcuts'. Instead of a shortcut character, nil redefines the global `hydra-feature-shortcuts'. Instead of a shortcut
can be chosen, in which case no entry in the character, nil can be chosen, in which case no entry in the
`hydra-feature-shortcuts' will be generated." `hydra-feature-shortcuts' will be generated."
:group 'personal-settings :group 'personal-settings
:type '(repeat (list string (choice character (const nil)) function)) :type '(repeat (list string (choice character (const nil)) function))
@ -188,4 +187,4 @@ can be chosen, in which case no entry in the
(provide 'db-customize) (provide 'db-customize)
;;; db-customize ends here ;;; db-customize.el ends here