From 91930a038e1d4a8da7dbc74d57b3042c58bf2049 Mon Sep 17 00:00:00 2001 From: Gerard Vermeulen Date: Tue, 3 Jan 2023 17:17:23 +0100 Subject: [PATCH] Setup `ielm' for better interoperability with `smartparens' --- README.org | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.org b/README.org index 6c0144e..e224bd2 100644 --- a/README.org +++ b/README.org @@ -4231,6 +4231,19 @@ Here is a list of links describing how to program and debug [[info:elisp#Top][Em Ref. [cite:@Monnier.ACM-PL.4.1] exposes the evolution of Emacs Lisp and explains many Emacs Lisp idioms. +Listing [[lst:setup-ielm][setup ielm]] customizes the [[https://wikemacs.org/wiki/IELM][Interactive Emacs Lisp Mode]] for better +interoperability with [[https://smartparens.readthedocs.io/en/latest/][Smartparens]]: get help on the key bindings by means of +src_emacs-lisp{(describe-mode (get-buffer "*ielm*"))}. + +#+caption)}[Setup =ielm=]: +#+caption: Install =ielm=. +#+name: lst:setup-ielm +#+begin_src emacs-lisp +(with-eval-after-load 'ielm + (custom-set-variables + '(ielm-dynamic-return nil))) +#+end_src + ** [[https://fennel-lang.org/][Fennel Programming]] :PROPERTIES: :CUSTOM_ID: sec:fennel-programming