From 9ad8d97f936df8fc49899228b332da3c4cb43197 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Thu, 30 May 2019 13:21:19 -0400 Subject: [PATCH] Correct `map!` example --- modules/tools/ein/README.org | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/modules/tools/ein/README.org b/modules/tools/ein/README.org index 07ff5cd13..57e54381c 100644 --- a/modules/tools/ein/README.org +++ b/modules/tools/ein/README.org @@ -61,9 +61,8 @@ simplified and are easily accessible. However, by default, it's not bound to any Here's an example of how to bind it: #+BEGIN_SRC emacs-lisp -(map! - (:map ein:notebook-mode-map - :localleader - :map ein:notebook-mode-map "," #'+ein-hydra/body)) +(map! :map ein:notebook-mode-map + :localleader + "," #'+ein-hydra/body) #+END_SRC