diff --git a/core/core-modules.el b/core/core-modules.el index 48624a73b..7ac3b4abc 100644 --- a/core/core-modules.el +++ b/core/core-modules.el @@ -201,7 +201,7 @@ This doesn't require modules to be enabled. For enabled modules us for default-directory in doom-modules-dirs for path = (concat category "/" module "/" file) if (file-exists-p path) - return (expand-file-name path))) + return (file-truename path))) (defun doom-module-from-path (&optional path enabled-only) "Returns a cons cell (CATEGORY . MODULE) derived from PATH (a file path). @@ -466,7 +466,7 @@ to least)." `(unless doom-interactive-p (doom-module-mplist-map (lambda (category module &rest plist) - (if (plist-get plist :path) + (if (plist-member plist :path) (apply #'doom-module-set category module plist) (message "WARNING Couldn't find the %s %s module" category module))) ,@(if (keywordp (car modules)) diff --git a/modules/editor/evil/config.el b/modules/editor/evil/config.el index 19c7ce387..836380bff 100644 --- a/modules/editor/evil/config.el +++ b/modules/editor/evil/config.el @@ -53,8 +53,8 @@ directives. By default, this only recognizes C directives.") ;; Slow this down from 0.02 to prevent blocking in large or folded buffers ;; like magit while incrementally highlighting matches. - (setq-hook! 'magit-mode-hook evil-ex-hl-update-delay 0.2) - (setq-hook! 'so-long-minor-mode-hook evil-ex-hl-update-delay 0.25) + (setq-hook! '(magit-mode-hook so-long-minor-mode-hook) + evil-ex-hl-update-delay 0.25) :config (evil-select-search-module 'evil-search-module 'evil-search) diff --git a/modules/os/tty/README.org b/modules/os/tty/README.org index 9a8e398c1..a1aaed2eb 100644 --- a/modules/os/tty/README.org +++ b/modules/os/tty/README.org @@ -10,6 +10,7 @@ - [[#plugins][Plugins]] - [[#prerequisites][Prerequisites]] - [[#configuration][Configuration]] + - [[#true-color-and-italic-support][True-color and italic support]] - [[#troubleshooting][Troubleshooting]] * Description diff --git a/modules/tools/eval/autoload/eval.el b/modules/tools/eval/autoload/eval.el index 6ccfdcb3b..0ebc57a98 100644 --- a/modules/tools/eval/autoload/eval.el +++ b/modules/tools/eval/autoload/eval.el @@ -77,7 +77,7 @@ (get-buffer-window (or (+eval--ensure-in-repl-buffer) t)))) (+eval/send-region-to-repl beg end) - (if-let (runner (cdr (assq major-mode +eval-runners))) + (if-let (runner (alist-get major-mode +eval-runners)) (funcall runner beg end) (quickrun-region beg end)))))