<div dir="ltr"><div><br></div>Thank you Pascal. What I didn't understand is why the keybinds are so different in the slime-repl-mode and in the lisp-mode while editing a .lisp file.<div><br></div><div>Best,<br><div><br clear="all"><div><div dir="ltr" class="gmail_signature"><div dir="ltr"><div>Alexandre Rademaker<br><div><div><a href="http://arademaker.github.com/" style="color:rgb(17,85,204)" target="_blank">http://arademaker.github.com/</a><br></div></div><div><a href="http://researcher.ibm.com/person/br-alexrad" style="color:rgb(17,85,204)" target="_blank">http://researcher.ibm.com/person/br-alexrad</a><br></div><div><br></div></div></div></div></div><br></div></div></div><br><div class="gmail_quote"><div dir="ltr">On Fri, Jul 27, 2018 at 10:12 PM Pascal Bourguignon <<a href="mailto:pjb@informatimago.com">pjb@informatimago.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word;line-break:after-white-space"><br><div><br><blockquote type="cite"><div>On 28 Jul 2018, at 02:40, Alexandre Rademaker <<a href="mailto:arademaker@gmail.com" target="_blank">arademaker@gmail.com</a>> wrote:</div><br class="m_7992058437945121148Apple-interchange-newline"><div><div><br>After the last Emacs upgrade to 26.1, the M-s key bind from paredit-mode is replaced by `Next element matching (regexp)` command in the slime repl buffer.  Sorry for the silly question, but how to get M-s mapped to paredit-splice-sexp again? In a lisp file buffer it is working as expected.<br></div></div></blockquote></div><div><br></div><div><br></div><div>(push (lambda () (local-set-key (kbd “M-s”) ‘paredit-splice-sexp)) slime-repl-mode-hook)</div><div><br></div><div>or more emacsy:  (add-hook ‘slime-repl-mode-hook (lambda () (local-set-key (kbd “M-s”) ‘paredit-splice-sexp)))</div><div><br></div><div>Also to consider: there’s probably a keymap for the silme-repl-mode, you could modify it directly.</div><div><br></div><br><div>
<div style="color:rgb(0,0,0);letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;word-wrap:break-word;line-break:after-white-space"><div style="color:rgb(0,0,0);letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;word-wrap:break-word;line-break:after-white-space"><div style="color:rgb(0,0,0);letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;word-wrap:break-word;line-break:after-white-space">-- <br>__Pascal J. Bourguignon__</div><div style="color:rgb(0,0,0);letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;word-wrap:break-word;line-break:after-white-space"><br><br><br></div></div></div>
</div>
<br></div></blockquote></div>