From 8e16e8b48c2b4e78f1ebd383850712e8bc49b5dd Mon Sep 17 00:00:00 2001 From: eriedaberrie Date: Mon, 10 Feb 2025 17:29:33 +0000 Subject: [PATCH] Add more puni binds --- init.el | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index d1a416f..641bba2 100644 --- a/init.el +++ b/init.el @@ -167,10 +167,20 @@ ("C-}" . puni-barf-forward) ("C-(" . puni-slurp-backward) ("C-{" . puni-barf-backward) + ("C-S-w" . my-puni-squeeze) + ("C-c p b" . puni-splice-killing-backward) + ("C-c p f" . puni-splice-killing-forward) + ("C-c p c" . puni-convolute) ("C-c p t" . puni-transpose) ("C-c p r" . puni-raise) ("C-c p l" . puni-splice) - ("C-c p s" . puni-split))) + ("C-c p s" . puni-split)) + :config + (defun my-puni-squeeze () + (interactive) + (call-interactively #'puni-squeeze) + (unless current-prefix-arg + (god-mode-all -1)))) (use-package ace-window :bind ("C-c w" . ace-window)