From 397787ec2cca223b0ebe1cce6ab3e9b43d7888e7 Mon Sep 17 00:00:00 2001 From: Michael Fogleman Date: Fri, 5 Sep 2014 11:03:50 -0400 Subject: [PATCH] Mention smartparens in code documentation. --- clojure-mode.el | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/clojure-mode.el b/clojure-mode.el index 039ffbb3..529fe41c 100644 --- a/clojure-mode.el +++ b/clojure-mode.el @@ -19,12 +19,16 @@ ;; Provides font-lock, indentation, and navigation for the Clojure ;; programming language (http://clojure.org). -;; Using clojure-mode with paredit is highly recommended. Use paredit -;; as you would with any other minor mode; for instance: -;; +;; Using clojure-mode with paredit or smartparens is highly recommended. + +;; Here are some example configurations: + ;; ;; require or autoload paredit-mode ;; (add-hook 'clojure-mode-hook 'paredit-mode) +;; ;; require or autoload smartparens +;; (add-hook 'clojure-mode-hook 'smartparens-strict-mode) + ;; See CIDER (http://github.com/clojure-emacs/cider) for ;; better interaction with subprocesses via nREPL.