[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/cider 09262615f3 2/2: Mention paren-face in the docs
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/cider 09262615f3 2/2: Mention paren-face in the docs |
Date: |
Tue, 22 Aug 2023 15:59:08 -0400 (EDT) |
branch: elpa/cider
commit 09262615f38fdfbf92aa442f749872e7988f94a5
Author: vemv <vemv@users.noreply.github.com>
Commit: Bozhidar Batsov <bozhidar@batsov.dev>
Mention paren-face in the docs
---
doc/modules/ROOT/pages/additional_packages.adoc | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/doc/modules/ROOT/pages/additional_packages.adoc
b/doc/modules/ROOT/pages/additional_packages.adoc
index a6a8bc5a53..6dce41e710 100644
--- a/doc/modules/ROOT/pages/additional_packages.adoc
+++ b/doc/modules/ROOT/pages/additional_packages.adoc
@@ -139,6 +139,16 @@ You can disable this Paredit behaviour by adding the
following to your `init.el`
(define-key paredit-mode-map (kbd "RET") nil)
----
+=== paren-face
+
+https://github.com/tarsius/paren-face[paren-face] defines a face named
`parenthesis` used just for parentheses. The originally intended purpose of
this face is to make parentheses less visible in Lisp code by dimming them.
+
+In the author's words:
+
+> We lispers probably don’t need to be constantly made aware of the existence
of the parentheses. Dimming them might be even more useful for people new to
lisp who have not yet learned to subconsciously blend out the parentheses.
+
+TIP: the following customization expands paren-face to dim even more
delimiters from the Clojure language: `(setq paren-face-regexp "\\([(
]\\.-\\|[( ]\\.+\\|[][(){}#/]\\)")`.
+
=== Smartparens
https://github.com/Fuco1/smartparens[smartparens] is an excellent alternative