about summary refs log tree commit diff stats
path: root/.emacs.d
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2021-09-04 16:14:55 +0100
committerDavid Morgan <djm_uk@protonmail.com>2021-09-04 16:14:55 +0100
commit8c8117baa77e096279a589052ef65ea4e5a9c2d1 (patch)
tree5d14f53de4e80caa4528fd5eedcd8a437cbe1741 /.emacs.d
parent7cc0ecb3cf91ccc3aa0a13a0f8bd2ba55e96547d (diff)
downloaddotfiles-8c8117baa77e096279a589052ef65ea4e5a9c2d1.tar.gz
Don't let paredit and sp override M-? binding, and move all pardit config into one place
Diffstat (limited to '.emacs.d')
-rw-r--r--.emacs.d/init.el1
-rw-r--r--.emacs.d/lisp/init-paredit.el121
-rw-r--r--.emacs.d/lisp/init-smartparens.el4
3 files changed, 117 insertions, 9 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index cb4aceb..04d651f 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -38,7 +38,6 @@
 (require 'init-emacs-lisp)
 (require 'init-clojure)
 (require 'init-paredit)
-(require 'init-paredit-x)
 (require 'init-lsp)
 (require 'init-git)
 (require 'init-shell)
diff --git a/.emacs.d/lisp/init-paredit.el b/.emacs.d/lisp/init-paredit.el
index 20dc2da..9d25b19 100644
--- a/.emacs.d/lisp/init-paredit.el
+++ b/.emacs.d/lisp/init-paredit.el
@@ -16,18 +16,125 @@
 
 (use-package paredit
   :diminish
-  ;; sp does a few things better
-  :bind (([remap mark-sexp] . sp-mark-sexp)
-         ("M-[" . sp-wrap-square)
-         ("C-c M-{" . sp-wrap-curly)
-         ([remap paredit-wrap-round] . sp-wrap-round)
-         ([remap paredit-meta-doublequote] . sp-wrap-double-quotation-marks)
-         ("M-W" . paredit-copy-as-kill))
+  :bind
+  (:map paredit-mode-map
+        ([remap mark-sexp] . sp-mark-sexp)
+        ("M-[" . sp-wrap-square)
+        ("C-c M-{" . sp-wrap-curly)
+        ([remap paredit-wrap-round] . sp-wrap-round)
+        ([remap paredit-meta-doublequote] . sp-wrap-double-quotation-marks)
+        ("M-W" . paredit-copy-as-kill))
   :config
   (defun sp-wrap-double-quotation-marks ()
     (interactive)
     (sp-wrap-with-pair "\""))
+
   :init
+  ;; From emacswiki - extreme barfage & slurpage
+  (defun paredit-barf-all-the-way-backward ()
+    (interactive)
+    (paredit-split-sexp)
+    (paredit-backward-down)
+    (paredit-splice-sexp))
+  (defun paredit-barf-all-the-way-forward ()
+    (interactive)
+    (paredit-split-sexp)
+    (paredit-forward-down)
+    (paredit-splice-sexp)
+    (if (eolp) (delete-horizontal-space)))
+  (defun paredit-slurp-all-the-way-backward ()
+    (interactive)
+    (catch 'done
+      (while (not (bobp))
+        (save-excursion
+          (paredit-backward-up)
+          (if (eq (char-before) ?\()
+              (throw 'done t)))
+        (paredit-backward-slurp-sexp))))
+  (defun paredit-slurp-all-the-way-forward ()
+    (interactive)
+    (catch 'done
+      (while (not (eobp))
+        (save-excursion
+          (paredit-forward-up)
+          (if (eq (char-after) ?\))
+              (throw 'done t)))
+        (paredit-forward-slurp-sexp))))
+
+  ;; From https://github.com/bodil/emacs.d/blob/master/bodil/bodil-paredit.el
+  ;; Inverse M-(
+  (defun paredit-wrap-round-from-behind ()
+    (interactive)
+    (forward-sexp -1)
+    (paredit-wrap-round)
+    (insert " ")
+    (forward-char -1))
+  ;; From https://github.com/bodil/emacs.d/blob/master/bodil/bodil-paredit.el
+  ;; Duplicate sexp
+  (defun paredit-duplicate-after-point ()
+    "Duplicates the content of the line that is after the point."
+    (interactive)
+    ;; skips to the next sexp
+    (while (looking-at " ")
+      (forward-char))
+    (set-mark-command nil)
+    ;; while we find sexps we move forward on the line
+    (while (and (<= (point) (car (bounds-of-thing-at-point 'sexp)))
+                (not (= (point) (line-end-position))))
+      (forward-sexp)
+      (while (looking-at " ")
+        (forward-char)))
+    (kill-ring-save (mark) (point))
+    ;; go to the next line and copy the sexprs we encountered
+    (paredit-newline)
+    (set-mark-command nil)
+    (yank)
+    (exchange-point-and-mark))
+
+  (defun replace-paredit-binding (commands original-keys new-keys)
+    (when commands
+      (if (and (consp (car commands))
+               (equal (caar commands) original-keys))
+          (setcar (car commands) new-keys)
+        (replace-paredit-binding (cdr commands) original-keys new-keys))))
+  (defun paredit-commands-advice ()
+    ;; Default paredit-convolute-sexp binding clashes with xref-find-references
+    (replace-paredit-binding paredit-commands "M-?" "C-M-?")
+
+    (nconc paredit-commands
+           '("Extreme Barfage & Slurpage"
+             (("C-M-)")
+              paredit-slurp-all-the-way-forward
+              ("(foo (bar |baz) quux zot)"
+               "(foo (bar |baz quux zot))")
+              ("(a b ((c| d)) e f)"
+               "(a b ((c| d)) e f)"))
+             (("C-M-}" "M-F")
+              paredit-barf-all-the-way-forward
+              ("(foo (bar |baz quux) zot)"
+               "(foo (bar|) baz quux zot)"))
+             (("C-M-(")
+              paredit-slurp-all-the-way-backward
+              ("(foo bar (baz| quux) zot)"
+               "((foo bar baz| quux) zot)")
+              ("(a b ((c| d)) e f)"
+               "(a b ((c| d)) e f)"))
+             (("C-M-{" "M-B")
+              paredit-barf-all-the-way-backward
+              ("(foo (bar baz |quux) zot)"
+               "(foo bar baz (|quux) zot)")))
+           '("Extra"
+             (("C-c M-)")
+              paredit-wrap-round-from-behind
+              ("(foo| bar baz" "((| foo) bar baz"))
+             (("C-c C-d")
+              paredit-duplicate-after-point
+              ("|(foo)" "(foo)\n|(foo)"))))
+
+    ;; Only need to do this once
+    (advice-remove 'paredit-define-keys 'paredit-commands-advice))
+
+  (advice-add 'paredit-define-keys :before 'paredit-commands-advice)
   (add-lisp-hook #'turn-off-smartparens-mode)
   (add-lisp-hook #'enable-paredit-mode))
 
diff --git a/.emacs.d/lisp/init-smartparens.el b/.emacs.d/lisp/init-smartparens.el
index aeeb6fd..9e8632e 100644
--- a/.emacs.d/lisp/init-smartparens.el
+++ b/.emacs.d/lisp/init-smartparens.el
@@ -40,7 +40,9 @@
   (show-smartparens-global-mode)
   (require 'smartparens-config)
   (sp-use-paredit-bindings)
-  ;:bind (:map prog-mode-map ((")" . sp-close-round)))
+  (unbind-key "M-?" 'smartparens-mode-map)
+  (bind-key "C-M-?" 'sp-convolute-sexp 'smartparens-mode-map)
+  ;; :bind (:map smartparens-mode-map (")" . sp-close-round))
   )
 
 (provide 'init-smartparens)