This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-08-03
Channels
- # announcements (5)
- # babashka (7)
- # beginners (119)
- # biff (4)
- # cider (7)
- # clj-kondo (26)
- # cljfx (3)
- # cljs-dev (2)
- # clojure (28)
- # clojure-austin (18)
- # clojure-europe (9)
- # clojure-france (6)
- # clojure-norway (4)
- # clojure-uk (3)
- # clojurescript (6)
- # community-development (1)
- # core-async (4)
- # cursive (9)
- # data-science (12)
- # datomic (13)
- # duct (18)
- # emacs (15)
- # etaoin (5)
- # events (13)
- # honeysql (46)
- # hyperfiddle (9)
- # jackdaw (5)
- # jobs (13)
- # keechma (4)
- # lsp (37)
- # malli (32)
- # nbb (14)
- # off-topic (10)
- # other-languages (2)
- # polylith (4)
- # programming-beginners (3)
- # reagent (27)
- # reitit (1)
- # shadow-cljs (32)
- # sql (11)
- # tools-build (5)
- # tools-deps (3)
- # vim (14)
- # xtdb (11)
do you mean for the keybindings it lists? do you use which-key? if so, do you notice the same mis-matches there?
which-key doesn't tell you want the single key bindings are (or at least not that I've been able to find yet, if it does that would be cool)
fyi C-h m
probably doesn't have mis-matches per se. it just says what the binding is for a given keymap. you may not get that binding because another keymap (especially the evil ones) may override it. if you fancy reading about it, noctuid covers the basics in their evil guide: https://github.com/noctuid/evil-guide#keymap-precedence and specifically this link: https://github.com/syl20bnr/spacemacs/wiki/Keymaps-guide
i'm running a default version of prelude, and i can't seem to get paredit enabled on my clojure docs (it is on my lisp docs, though) prelude-lisp.el
;; a great lisp coding hook
(defun prelude-lisp-coding-defaults ()
(enable-paredit-mode)
(rainbow-delimiters-mode +1))
(setq prelude-lisp-coding-hook 'prelude-lisp-coding-defaults)
prelude-clojure.el
(with-eval-after-load 'clojure-mode
(defun prelude-clojure-mode-defaults ()
(subword-mode +1)
(run-hooks 'prelude-lisp-coding-hook))
(setq prelude-clojure-mode-hook 'prelude-clojure-mode-defaults)
(add-hook 'clojure-mode-hook (lambda ()
(run-hooks 'prelude-clojure-mode-hook))))
i have run the recompile-init function, and there are no errors with the respective files