-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimple-paren.el
161 lines (125 loc) · 4.01 KB
/
simple-paren.el
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
;;; simple-paren.el --- Insert paired delimiter, wrap symbols in front maybe -*- lexical-binding: t; -*-
;; Version: 0.1
;; Copyright (C) 2016 Andreas Röhler
;; Author: Andreas Röhler <[email protected]>
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;; Keywords: convenience
;;; Commentary: Provide common paired delimiters
;; Wrap symbols at point or at one space befor
;; Examples, curor as pipe-symbol:
;; (defun foo1 | ==> (defun foo1 ()
;; |interactive ==> (interactive)
;; (global-set-key [(super ?{)] 'simple-paren-brace)
;; (global-set-key [(super ?\[)] 'simple-paren-bracket)
;; (global-set-key [(super ?')] 'simple-paren-singlequote)
;; (global-set-key [(super ?\")] 'simple-paren-doublequote)
;; (global-set-key [(super ?<)] 'simple-paren-lesser-then)
;; (global-set-key [(super ?>)] 'simple-paren-greater-then)
;; keeps padding
;; | foo == ( foo )
;;
;;; Code:
(defvar simple-paren-skip-chars "^\[\]{}(), \t\r\n\f"
"Skip chars backward not mentioned here. ")
(defun simple-paren--return-complement-char-maybe (erg)
"For example return \"}\" for \"{\" but keep \"\\\"\". "
(pcase erg
(?< ?>)
(?> ?<)
(?\( ?\))
(?\) ?\()
(?\] ?\[)
(?\[ ?\])
(?} ?{)
(?{ ?})
(_ erg)))
(defvar simple-paren-braced-newline (list 'js-mode))
(defun simple-paren--intern (char)
(let (end)
(if (region-active-p)
(progn
(setq end (copy-marker (region-end)))
(goto-char (region-beginning)))
(unless (or (eobp) (eolp)(member (char-after) (list 32 9)))
(skip-chars-backward simple-paren-skip-chars)))
(insert char)
(if (region-active-p)
(goto-char end)
(when (looking-at "\\( \\)?[^ \n]+")
;; travel symbols after point
(skip-chars-forward " ")
(skip-chars-forward simple-paren-skip-chars)
;; (forward-sexp)
(when (match-string-no-properties 1)
(insert (match-string-no-properties 1))))))
(insert (simple-paren--return-complement-char-maybe char))
(forward-char -1)
(when (and (eq (char-after) ?})(member major-mode simple-paren-braced-newline))
(newline 2)
(indent-according-to-mode)
(forward-char 1)
(insert ?\;)
(forward-line -1)
(indent-according-to-mode)))
;;;###autoload
(defun simple-paren-parentize ()
(interactive "*")
(simple-paren--intern ?\())
;;;###autoload
(defun simple-paren-bracket ()
(interactive "*")
(simple-paren--intern ?\[))
;;;###autoload
(defun simple-paren-brace ()
(interactive "*")
(simple-paren--intern ?{))
;;;###autoload
(defun simple-paren-doublequote ()
(interactive "*")
(simple-paren--intern ?\"))
;;;###autoload
(defun simple-paren-singlequote ()
(interactive "*")
(simple-paren--intern ?'))
(defun simple-paren-backtick ()
(interactive "*")
(simple-paren--intern ?`))
;;;###autoload
(defun simple-paren-lesser-then ()
(interactive "*")
(simple-paren--intern ?<))
;;;###autoload
(defun simple-paren-greater-then ()
(interactive "*")
(simple-paren--intern ?>))
;;;###autoload
(defun simple-paren-grave-accent ()
(interactive "*")
(simple-paren--intern ?`))
;;;###autoload
(defun simple-paren-colon ()
(interactive "*")
(simple-paren--intern ?:))
;;;###autoload
(defun simple-paren-star ()
(interactive "*")
(simple-paren--intern ?*))
;;;###autoload
(defun simple-paren-equalize ()
(interactive "*")
(simple-paren--intern ?=))
;;;###autoload
(defun simple-paren-acute-accent ()
(interactive "*")
(simple-paren--intern ?´))
(provide 'simple-paren)
;;; simple-paren.el ends here