(fix): use correct type for `org-roam-db-update-method` (#1295)

Fixes #1294.
master
Jürgen Hötzel 5 years ago committed by GitHub
parent 8efec080e0
commit 060a29c91d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      org-roam-db.el

@ -102,8 +102,8 @@ so that multi-directories are updated.")
`idle-timer'
Updates the database if dirty, if Emacs idles for `org-roam-db-update-idle-seconds'."
:type '(set (const :tag "idle-timer" idle-timer)
(const :tag "immediate" immediate))
:type '(choice (const :tag "idle-timer" idle-timer)
(const :tag "immediate" immediate))
:group 'org-roam)
(defcustom org-roam-db-update-idle-seconds 2

Loading…
Cancel
Save