From 0cc6325f12322f8e8d83e08b203aaf897ac72db7 Mon Sep 17 00:00:00 2001 From: contrapunctus Date: Wed, 27 Apr 2022 21:32:19 +0530 Subject: [PATCH] Add [] to Lisp syntax for CLSQL --- init.org | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/init.org b/init.org index 9704017..4179019 100644 --- a/init.org +++ b/init.org @@ -4708,7 +4708,10 @@ All COMMAND-SPECS should be a list in the form #+BEGIN_SRC emacs-lisp (use-package lisp-mode - :interpreter ("cl" . lisp-mode)) ;; cl-launch scripts + :interpreter ("cl" . lisp-mode) + :config + (modify-syntax-entry ?\[ "(]" lisp-mode-syntax-table) + (modify-syntax-entry ?\] ")[" lisp-mode-syntax-table)) ;; cl-launch scripts #+END_SRC *** redshank