BIBLIOGRAPHY
“Cider: The Clojure Interactive Development Environment That Rocks.” n.d. Accessed November 15, 2024. https://cider.mx/.
History
- 사이더 패키지
CIDER: The Clojure Interactive Development Environment that Rocks
(“Cider: The Clojure Interactive Development Environment That Rocks” n.d.)
cider - evil-collection
###autoload
(defun evil-collection-cider-setup ()
"Set up `evil' bindings for `cider'."
(unless evil-move-beyond-eol
(advice-add 'cider-eval-last-sexp :around 'evil-collection-cider-last-sexp)
(advice-add 'cider-eval-last-sexp-and-replace :around 'evil-collection-cider-last-sexp)
(advice-add 'cider-eval-last-sexp-to-repl :around 'evil-collection-cider-last-sexp)
(with-eval-after-load 'cider-eval-sexp-fu
(advice-add 'cider-esf--bounds-of-last-sexp :around 'evil-collection-cider-last-sexp)))
(when evil-collection-setup-debugger-keys
(add-hook 'cider-mode-hook #'evil-normalize-keymaps)
(add-hook 'cider--debug-mode-hook #'evil-normalize-keymaps)
(evil-collection-define-key 'normal 'cider-mode-map
[f6] 'cider-browse-instrumented-defs
[f9] 'cider-debug-defun-at-point)
Comments