-
Notifications
You must be signed in to change notification settings - Fork 4
/
simple-paren.el
616 lines (567 loc) · 18.1 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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
;;; simple-paren.el --- Non-electrical insert paired delimiter, wrap -*- lexical-binding: t; -*-
;; Version: 0.2
;; Copyright (C) 2016-2022 Andreas Röhler, Steve Purcell
;; See also http://www.unicode.org/L2/L2013/13046-BidiBrackets.txt
;; Author: Andreas Röhler, Steve Purcell
;; URL: https://github.com/andreas-roehler/simple-paren
;; Package-Requires: ((emacs "24") (cl-lib "0.5"))
;; 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:
;; Commands inserting paired delimiters, by default literatim.
;; With \\[universal-argument] and with active region,
;; --i.e. transient-mark-mode-- wrap around. With numerical ARG insert the
;; delimiter arg times
;; In order to insert a pair at point call `C-<space>` i.e. `set-mark-command` first maybe.
;; Create your own commands by just providing the delimiting
;; charakters as shown below with math white square brackets:
;; (defun simple-paren-mathematical-white-square-bracket (arg)
;; "Insert MATHEMATICAL LEFT/RIGHT WHITE SQUARE BRACKETs"
;; (interactive "*P") (simple-paren--intern ?⟦ ?⟧
;; arg))
;;
;; Or even shorter:
;; (simple-paren-define mathematical-white-square-bracketwhitespace ?⟦ ?⟧)
;; Examples, cursor as pipe-symbol:
;; (defun foo1 | ==> (defun foo1 ()
;; with active region and \\[universal-argument] until end of word
;; |interactive ==> (interactive)
;; with active region and \\[universal-argument] until end of word
;; int|eractive ==> int(eractive)
;; With `simple-paren-honor-padding-p’ set to ‘t', active region
;; and \\[universal-argument]
;; | foo ==> ( foo )
;; Insertions are not electric, thus a mnemonic key is recommended:
;; (global-set-key [(super ?\()] 'simple-paren-parentize)
;; (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-than)
;; (global-set-key [(super ?>)] 'simple-paren-greater-than)
;;
;;; Code:
(require 'thingatpt)
(defvar simple-paren-paired-delimiter-chars
(list
?\‘ ?\’
?` ?'
?< ?>
?> ?<
?\( ?\)
?\) ?\(
?\] ?\[
?\[ ?\]
?} ?{
?{ ?}
?\〈 ?\〉
?\⦑ ?\⦒
?\⦓ ?\⦔
?\【 ?\】
?\⦗ ?\⦘
?\⸤ ?\⸥
?\「 ?\」
?\《 ?\》
?\⦕ ?\⦖
?\⸨ ?\⸩
?\⧚ ?\⧛
?\{ ?\}
?\( ?\)
?\[ ?\]
?\⦅ ?\⦆
?\「 ?\」
?\❰ ?\❱
?\❮ ?\❯
?\“ ?\”
?\‘ ?\’
?\❲ ?\❳
?\⟨ ?\⟩
?\⟪ ?\⟫
?\⟮ ?\⟯
?\⟦ ?\⟧
?\⟬ ?\⟭
?\❴ ?\❵
?\❪ ?\❫
?\❨ ?\❩
?\❬ ?\❭
?\᚛ ?\᚜
?\〈 ?\〉
?\⧼ ?\⧽
?\⟅ ?\⟆
?\⸦ ?\⸧
?\﹛ ?\﹜
?\﹙ ?\﹚
?\﹝ ?\﹞
?\⁅ ?\⁆
?\⦏ ?\⦎
?\⦍ ?\⦐
?\⦋ ?\⦌
?\₍ ?\₎
?\⁽ ?\⁾
?\༼ ?\༽
?\༺ ?\༻
?\⸢ ?\⸣
?\〔 ?\〕
?\『 ?\』
?\⦃ ?\⦄
?\〖 ?\〗
?\⦅ ?\⦆
?\〚 ?\〛
?\〘 ?\〙
?\⧘ ?\⧙
?\⦉ ?\⦊
?\⦇ ?\⦈))
(defvar simple-paren-forward-delimiter-chars
(list
?\’
?'
?>
?<
?\)
?\(
?\[
?\]
?{
?}
?\〉
?\⦒
?\⦔
?\】
?\⦘
?\⸥
?\」
?\》
?\⦖
?\⸩
?\⧛
?\}
?\)
?\]
?\⦆
?\」
?\❱
?\❯
?\”
?\’
?\❳
?\⟩
?\⟫
?\⟯
?\⟧
?\⟭
?\❵
?\❫
?\❩
?\❭
?\᚜
?\〉
?\⧽
?\⟆
?\⸧
?\﹜
?\﹚
?\﹞
?\⁆
?\⦎
?\⦐
?\⦌
?\₎
?\⁾
?\༽
?\༻
?\⸣
?\〕
?\』
?\⦄
?\〗
?\⦆
?\〛
?\〙
?\⧙
?\⦊))
(defvar simple-paren-backward-delimiter-chars
(list
?\‘
?`
?<
?>
?\(
?\)
?\]
?\[
?}
?{
?\〈
?\⦑
?\⦓
?\【
?\⦗
?\⸤
?\「
?\《
?\⦕
?\⸨
?\⧚
?\{
?\(
?\[
?\⦅
?\「
?\❰
?\❮
?\“
?\‘
?\❲
?\⟨
?\⟪
?\⟮
?\⟦
?\⟬
?\❴
?\❪
?\❨
?\❬
?\᚛
?\〈
?\⧼
?\⟅
?\⸦
?\﹛
?\﹙
?\﹝
?\⁅
?\⦏
?\⦍
?\⦋
?\₍
?\⁽
?\༼
?\༺
?\⸢
?\〔
?\『
?\⦃
?\〖
?\⦅
?\〚
?\〘
?\⧘
?\⦉
?\⦇))
(defvar simple-paren-known-paired-delimiters (list ?‘ ?’ ?` ?' ?< ?> ?> ?< ?\( ?\) ?\) ?\( ?\] ?\[ ?\[ ?\] ?} ?{ ?{ ?} ?\〈 ?\〉 ?\⦑ ?\⦒ ?\⦓ ?\⦔ ?\【 ?\】 ?\⦗ ?\⦘ ?\⸤ ?\⸥ ?\「 ?\」 ?\《 ?\》 ?\⦕ ?\⦖ ?\⸨ ?\⸩ ?\⧚ ?\⧛ ?\{ ?\} ?\( ?\) ?\[ ?\] ?\⦅ ?\⦆ ?\「 ?\」 ?\❰ ?\❱ ?\❮ ?\❯ ?\“ ?\” ?\‘ ?\’ ?\❲ ?\❳ ?\⟨ ?\⟩ ?\⟪ ?\⟫ ?\⟮ ?\⟯ ?\⟦ ?\⟧ ?\⟬ ?\⟭ ?\❴ ?\❵ ?\❪ ?\❫ ?\❨ ?\❩ ?\❬ ?\❭ ?\᚛ ?\᚜ ?\〈 ?\〉 ?\⧼ ?\⧽ ?\⟅ ?\⟆ ?\⸦ ?\⸧ ?\﹛ ?\﹜ ?\﹙ ?\﹚ ?\﹝ ?\﹞ ?\⁅ ?\⁆ ?\⦏ ?\⦎ ?\⦍ ?\⦐ ?\⦋ ?\⦌ ?\₍ ?\₎ ?\⁽ ?\⁾ ?\༼ ?\༽ ?\༺ ?\༻ ?\⸢ ?\⸣ ?\〔 ?\〕 ?\『 ?\』 ?\⦃ ?\⦄ ?\〖 ?\〗 ?\⦅ ?\⦆ ?\〚 ?\〛 ?\〘 ?\〙 ?\⧘ ?\⧙ ?\⦉ ?\⦊ ?\⦇ ?\⦈)
"List known paired delimiters")
(defvar simple-paren-skip-chars (concat "^, \t\r\n\f" simple-paren-known-paired-delimiters)
"Skip chars backward not mentioned here.")
(setq simple-paren-skip-chars (concat "^, \t\r\n\f" simple-paren-known-paired-delimiters))
(defvar simple-paren-backward-skip-chars simple-paren-skip-chars)
(defvar simple-paren-forward-skip-chars simple-paren-skip-chars)
(dolist (ele simple-paren-backward-delimiter-chars)
(unless (string-match (regexp-quote (char-to-string ele)) simple-paren-skip-chars)
(setq simple-paren-backward-skip-chars
(concat simple-paren-backward-skip-chars (char-to-string ele)))))
(dolist (ele simple-paren-forward-delimiter-chars)
(unless (string-match (regexp-quote (char-to-string ele)) simple-paren-skip-chars)
(setq simple-paren-forward-skip-chars
(concat simple-paren-forward-skip-chars (char-to-string ele)))))
(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))
(defcustom simple-paren-honor-padding-p t
"Default is `t', honor padding."
:type 'boolean
:group 'convenience)
(defun simple-paren--insert-literary (left-char right-char times)
(dotimes (_ times)
(insert left-char)
(save-excursion (insert right-char))))
(defun simple-paren--fix-braced-newline ()
(when (eq (char-after) ?})
(newline 2)
(indent-according-to-mode)
(forward-char 1)
(insert ?\;)
(forward-line -1)
(indent-according-to-mode)))
(defun simple-paren--intern (left-char right-char &optional arg)
(let* ((times (prefix-numeric-value arg))
(beg (if (use-region-p)
(region-beginning)
(point)))
(end (if (use-region-p)
(copy-marker (region-end))
(copy-marker (point))))
(deactivate-mark nil)
;; (face (or (ignore-errors (eq 'region (get-char-property (1- (point)) 'face)))
;; (eq 'region (get-char-property (point) 'face))))
fillchar padding)
(if
;; (not (and face beg end))
(not (and beg end))
(simple-paren--insert-literary left-char right-char times)
;; Wrap region if active
(progn
(goto-char beg)
(insert left-char)
(setq beg (point))
(and simple-paren-honor-padding-p (member (char-after) (list 32 9))(setq fillchar (char-after)))
(and fillchar (setq padding (make-string (skip-chars-forward " \t" (line-end-position)) fillchar)))
(and (marker-position end) (< (point) end)(goto-char end))
;; travel symbols after point
;; (skip-chars-forward " \t")
;; (skip-chars-forward (char-to-string left-char))
;; (skip-chars-forward simple-paren-skip-chars))
(unless (member major-mode simple-paren-braced-newline)
(when padding
(unless (thing-at-point-looking-at padding)
(insert padding))))
(setq end (point))
(insert right-char)
(when (member major-mode simple-paren-braced-newline)
(simple-paren--fix-braced-newline)))
(goto-char beg)
(push-mark)
(goto-char end))))
(defmacro simple-paren-define (name code1 code2)
"Define an insertion function with NAME, using char codes CODE1 and CODE2."
(let ((func-name (intern (concat "simple-paren-" (symbol-name name))))
(docstring (concat "Insert " (symbol-name name) "s literatim by default.
With \\[universal-argument] and active region, wrap around.
With numerical ARG 2 honor padding")))
`(defun ,func-name (times)
,docstring
(interactive "*P")
(simple-paren--intern ,code1 ,code2 times))))
(simple-paren-define acute-accent ?\´ ?\´)
(simple-paren-define angle-bracket ?\〈 ?\〉)
(simple-paren-define angle-bracket-with-dot ?\⦑ ?\⦒)
(simple-paren-define angled-percent "<%" "%>")
(simple-paren-define angled-percent-equal "<%=" "%>")
(simple-paren-define arc-less-than-bracket ?\⦓ ?\⦔)
(simple-paren-define backslash ?\\ ?\\)
(simple-paren-define backtick ?\` ?\`)
(simple-paren-define black-lenticular-bracket ?\【 ?\】)
(simple-paren-define black-tortoise-shell-bracket ?\⦗ ?\⦘)
(simple-paren-define bottom-half-bracket ?\⸤ ?\⸥)
(simple-paren-define brace ?\{ ?\})
(simple-paren-define braceminus "{-" "-}")
(simple-paren-define braceminuset "{-@" "@-}")
(simple-paren-define braceminussharp "{-#" "#-}")
(simple-paren-define bracket ?\[ ?\])
(simple-paren-define colon ?\: ?\:)
(simple-paren-define comma ?\, ?\,)
(simple-paren-define corner-bracket ?\「 ?\」)
(simple-paren-define cross ?\+ ?\+)
(simple-paren-define curly-bracket ?\{ ?\})
(simple-paren-define curveddoublequote ?\“ ?\”)
(simple-paren-define curvedsinglequote ?\‘ ?\’)
(simple-paren-define dollar ?\$ ?\$)
(simple-paren-define dot ?\. ?\.)
(simple-paren-define double-angle-bracket ?\《 ?\》)
(simple-paren-define double-arc-greater-than-bracket ?\⦕ ?\⦖)
(simple-paren-define double-parenthesis ?\⸨ ?\⸩)
(simple-paren-define double-wiggly-fence ?\⧚ ?\⧛)
(simple-paren-define doublequote ?\" ?\")
(simple-paren-define equalize ?\= ?\=)
(simple-paren-define escape ?\\ ?\\)
(simple-paren-define exclamation-mark ?\! ?\!)
(simple-paren-define fullwidth-curly-bracket ?\{ ?\})
(simple-paren-define fullwidth-parenthesis ?\( ?\))
(simple-paren-define fullwidth-square-bracket ?\[ ?\])
(simple-paren-define fullwidth-white-parenthesis ?\⦅ ?\⦆)
(simple-paren-define grave-accent ?\` ?\`)
(simple-paren-define greater-than ?\> ?\<)
(simple-paren-define halfwidth-corner-bracket ?\「 ?\」)
(simple-paren-define hash ?\# ?\#)
(simple-paren-define heavy-pointing-angle-bracket-ornament ?\❰ ?\❱)
(simple-paren-define heavy-pointing-angle-quotation-mark-ornament ?\❮ ?\❯)
(simple-paren-define hyphen ?\- ?\-)
(simple-paren-define lesser-than ?\< ?\>)
(simple-paren-define light-tortoise-shell-bracket-ornament ?\❲ ?\❳)
(simple-paren-define mathematical-angle-bracket ?\⟨ ?\⟩)
(simple-paren-define mathematical-double-angle-bracket ?\⟪ ?\⟫)
(simple-paren-define mathematical-flattened-parenthesis ?\⟮ ?\⟯)
(simple-paren-define mathematical-white-square-bracket ?\⟦ ?\⟧)
(simple-paren-define mathematical-white-tortoise-shell-bracket ?\⟬ ?\⟭)
(simple-paren-define medium-curly-bracket-ornament ?\❴ ?\❵)
(simple-paren-define medium-flattened-parenthesis-ornament ?\❪ ?\❫)
(simple-paren-define medium-parenthesis-ornament ?\❨ ?\❩)
(simple-paren-define medium-pointing-angle-bracket-ornament ?\❬ ?\❭)
(simple-paren-define ogham-feather-mark ?\᚛ ?\᚜)
(simple-paren-define parenthesis ?\( ?\))
(simple-paren-define parentize ?\( ?\))
(simple-paren-define percent ?% ?%)
(simple-paren-define period ?\. ?\.)
(simple-paren-define pipe ?| ?|)
(simple-paren-define point ?\. ?\.)
(simple-paren-define pointing-angle-bracket ?\〈 ?\〉)
(simple-paren-define pointing-curved-angle-bracket ?\⧼ ?\⧽)
(simple-paren-define question-mark ?\? ?\?)
(simple-paren-define s-shaped-bag-delimiter ?\⟅ ?\⟆)
(simple-paren-define sideways-u-bracket ?\⸦ ?\⸧)
(simple-paren-define singlequote ?\' ?\')
(simple-paren-define slash ?\/ ?\/)
(simple-paren-define slashstar "/*" "*/")
(simple-paren-define small-curly-bracket ?\﹛ ?\﹜)
(simple-paren-define small-parenthesis ?\﹙ ?\﹚)
(simple-paren-define small-tortoise-shell-bracket ?\﹝ ?\﹞)
(simple-paren-define square-bracket ?\[ ?\])
(simple-paren-define square-bracket-with-quill ?\⁅ ?\⁆)
(simple-paren-define square-bracket-with-tick-in-bottom-corner ?\⦏ ?\⦎)
(simple-paren-define square-bracket-with-tick-in-top-corner ?\⦍ ?\⦐)
(simple-paren-define square-bracket-with-underbar ?\⦋ ?\⦌)
(simple-paren-define star ?\* ?\*)
(simple-paren-define subscript-parenthesis ?\₍ ?\₎)
(simple-paren-define superscript-parenthesis ?\⁽ ?\⁾)
(simple-paren-define tibetan-mark-ang-khang-gyon ?\༼ ?\༽)
(simple-paren-define tibetan-mark-gug-rtags-gyon ?\༺ ?\༻)
(simple-paren-define tild ?\~ ?\~)
(simple-paren-define top-half-bracket ?\⸢ ?\⸣)
(simple-paren-define tortoise-shell-bracket ?\〔 ?\〕)
(simple-paren-define underscore ?\_ ?\_)
(simple-paren-define white-corner-bracket ?\『 ?\』)
(simple-paren-define white-curly-bracket ?\⦃ ?\⦄)
(simple-paren-define white-lenticular-bracket ?\〖 ?\〗)
(simple-paren-define white-parenthesis ?\⦅ ?\⦆)
(simple-paren-define white-square-bracket ?\〚 ?\〛)
(simple-paren-define white-tortoise-shell-bracket ?\〘 ?\〙)
(simple-paren-define whitespace ?\ ?\ )
(simple-paren-define wiggly-fence ?\⧘ ?\⧙)
(simple-paren-define z-notation-binding-bracket ?\⦉ ?\⦊)
(simple-paren-define z-notation-image-bracket ?\⦇ ?\⦈)
;; Commands
(defvar simple-paren-mode-map nil)
(defconst simple-paren-mode-map
(let ((map (make-sparse-keymap)))
;; <%= ?%>
(define-key map [(control ?<) (control %)(=)] 'simple-paren-angled-percent-equal)
;; <%asdf%>
(define-key map [(control ?<) (?%)] 'simple-paren-angled-percent)
;; /*asdf*/
(define-key map [(control ?/) (?*)] 'simple-paren-slashstar)
;; {-asdf-}
(define-key map [(control ?{) (?-)] 'simple-paren-braceminus)
;; {-#asdf#-}
(define-key map [(control ?{) (?#)] 'simple-paren-braceminussharp)
;; {-@asdf@-}
(define-key map [(control ?{) (?@)] 'simple-paren-braceminuset)
(define-key map [(super ?\")] 'simple-paren-doublequote)
(define-key map [(super ?\#)] 'simple-paren-hash)
(define-key map [(super ?\$)] 'simple-paren-dollar)
(define-key map [(super ?\')] 'simple-paren-singlequote)
(define-key map [(super ?\()] 'simple-paren-parentize)
(define-key map [(super ?\*)] 'simple-paren-star)
(define-key map [(super ?\@)] 'simple-paren-at)
(define-key map [(super ?\+)] 'simple-paren-cross)
(define-key map [(super ?\,)] 'simple-paren-comma)
(define-key map [(super ?\-)] 'simple-paren-hyphen)
(define-key map [(super ?\.)] 'simple-paren-dot)
(define-key map [(super ?/)] 'simple-paren-slash)
(define-key map [(super ?\:)] 'simple-paren-colon)
(define-key map [(super ?\;)] 'simple-paren-semicolon)
(define-key map [(super ?\<)] 'simple-paren-lesser-than)
(define-key map [(super ?\=)] 'simple-paren-equalize)
(define-key map [(super ?\>)] 'simple-paren-greater-than)
(define-key map [(super ?\?)] 'simple-paren-question-mark)
(define-key map [(super ?\[)] 'simple-paren-bracket)
(define-key map [(super ?\\)] 'simple-paren-backslash)
(define-key map [(super ?\\)] 'simple-paren-escape)
(define-key map [(super ?\_)] 'simple-paren-underscore)
(define-key map [(super ?\`)] 'simple-paren-backtick)
(define-key map [(super ?\`)] 'simple-paren-grave-accent)
(define-key map [(super ?\{)] 'simple-paren-brace)
(define-key map [(super ?\|)] 'simple-paren-pipe)
(define-key map [(super ?%)] 'simple-paren-percent)
(define-key map [(super ?\~)] 'simple-paren-tild)
(define-key map [(super ?\´)] 'simple-paren-acute-accent)
;; (error "To bind the key s-SPC, use [?\\s- ], not [s-SPC]")
(define-key map [(?\s- )] 'simple-paren-whitespace)
;; (kbd "C-j")
;; (define-key map [(super SPC)] 'simple-paren-whitespace)
;; (define-key map [(super ?\!)] 'simple-paren-exclamation-mark)
map))
(define-minor-mode simple-paren-mode
"Commands inserting paired delimiters.
Provide characters used in Math resp. Logic"
:lighter " SP"
:init-value nil
:global nil
:keymap simple-paren-mode-map)
(provide 'simple-paren)
;;; simple-paren.el ends here