about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--.emacs.d/lisp/init-paredit.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/.emacs.d/lisp/init-paredit.el b/.emacs.d/lisp/init-paredit.el
index 0b8c7ce..252932d 100644
--- a/.emacs.d/lisp/init-paredit.el
+++ b/.emacs.d/lisp/init-paredit.el
@@ -26,7 +26,8 @@
         ([remap paredit-wrap-round] . paredit-smart-wrap-round)
         ([remap paredit-meta-doublequote] . paredit-smart-metadouble-quote)
         ([remap paredit-splice-sexp] . paredit-smart-splice-sexp)
-        ("M-W" . paredit-copy-as-kill))
+        ("M-W" . paredit-copy-as-kill)
+        ("C-S-k" . paredit-kill-region))
   :config
   (defmacro define-paredit-smart-wrap (name)
     `(defun ,(intern (concat  "paredit-smart-wrap-" name))
@@ -66,7 +67,8 @@ Falls back to smartparens in comments."
     `(defun ,(intern (concat  "paredit-smart-" name "-sexp"))
          (&optional argument)
        ,(concat "Splice the list that the point is on by removing its delimiters.
-This version falls back to the smartparens version in scenarios that paredit will not handle.")
+This version falls back to the smartparens version in scenarios that paredit will
+not handle.")
        (interactive "P")
        (if (or (paredit-in-string-p)
                (paredit-in-comment-p)
0f0659aa ^
f3ca75d6 ^







f3ca75d6 ^
0f0659aa ^
f3ca75d6 ^

0f0659aa ^
f3ca75d6 ^

0f0659aa ^
f3ca75d6 ^

0f0659aa ^



f3ca75d6 ^

0f0659aa ^
f3ca75d6 ^

0f0659aa ^
f3ca75d6 ^

0f0659aa ^
f3ca75d6 ^

0f0659aa ^
f3ca75d6 ^

0f0659aa ^

f3ca75d6 ^


d4892b29 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72