diff --git a/modules/editor/evil/config.el b/modules/editor/evil/config.el index 910922427..439d8ebb8 100644 --- a/modules/editor/evil/config.el +++ b/modules/editor/evil/config.el @@ -161,7 +161,7 @@ directives. By default, this only recognizes C directives.") (advice-add #'evil-window-split :override #'+evil-window-split-a) (advice-add #'evil-window-vsplit :override #'+evil-window-vsplit-a) - ;; Make o/O continue comments (see `+evil-want-o/O-to-continue-comments') + ;; Make o/O continue comments (see `+evil-want-o/O-to-continue-comments' to disable) (advice-add #'evil-open-above :around #'+evil--insert-newline-above-and-respect-comments-a) (advice-add #'evil-open-below :around #'+evil--insert-newline-below-and-respect-comments-a) diff --git a/modules/lang/common-lisp/config.el b/modules/lang/common-lisp/config.el index a0b1a450c..21cb656c3 100644 --- a/modules/lang/common-lisp/config.el +++ b/modules/lang/common-lisp/config.el @@ -33,8 +33,9 @@ (setq sly-mrepl-history-file-name (concat doom-cache-dir "sly-mrepl-history") sly-kill-without-query-p t sly-net-coding-system 'utf-8-unix - ;; Doom defaults to non-fuzzy search, because it is slower and less - ;; precise. Change this to `sly-flex-completions' for fuzzy completion + ;; Doom defaults to non-fuzzy search, because it is faster and more + ;; precise (but requires more keystrokes). Change this to + ;; `sly-flex-completions' for fuzzy completion sly-complete-symbol-function 'sly-simple-completions) (set-popup-rules! diff --git a/modules/lang/ocaml/config.el b/modules/lang/ocaml/config.el index a27a736a1..490e4eb1f 100644 --- a/modules/lang/ocaml/config.el +++ b/modules/lang/ocaml/config.el @@ -24,8 +24,6 @@ (when (featurep! :checkers spell) (add-hook 'tuareg-mode-local-vars-hook #'flyspell-prog-mode)) - ;; Indent new lines in a comment block, and optionally prefix new comment - ;; lines with an asterix. See `+ocaml-prefix-comments-with-asterisk'. (setq-hook! 'tuareg-mode-hook comment-line-break-function #'+ocaml/comment-indent-new-line) diff --git a/modules/ui/workspaces/config.el b/modules/ui/workspaces/config.el index f7c6cfbf0..f7c620cd5 100644 --- a/modules/ui/workspaces/config.el +++ b/modules/ui/workspaces/config.el @@ -78,11 +78,10 @@ stored in `persp-save-dir'.") (let (persp-before-switch-functions) ;; The default perspective persp-mode creates is special and doesn't ;; represent a real persp object, so buffers can't really be assigned - ;; to it, among other quirks. We hide the nil persp... + ;; to it, among other quirks, so we get rid of it... (when (equal (car persp-names-cache) persp-nil-name) (pop persp-names-cache)) - ;; ...and create a *real* main workspace to fill this role, and hide - ;; the nil perspective. + ;; ...and create a *real* main workspace to fill this role. (unless (or (persp-get-by-name +workspaces-main) ;; Start from 2 b/c persp-mode counts the nil workspace (> (hash-table-count *persp-hash*) 2))