-
Notifications
You must be signed in to change notification settings - Fork 0
/
ar-thingatpt-utils-map.el
7398 lines (5497 loc) · 288 KB
/
ar-thingatpt-utils-map.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
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
;;; ar-thingatpt-utils-map --- the menu
;; Copyright (C) 2010-2024 Andreas Röhler, unless
;; indicated otherwise
;; Author: Andreas Röhler <[email protected]>, unless
;; indicated otherwise
;; Version: 0.1
;; Keywords: convenience
;; This file 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 2, or (at your option) any later version.
;; This file 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 GNU Emacs; see the file COPYING. If not, write to
;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
;; Boston, MA 02110-1301, USA.
;;; Commentary:
;;; Code:
(setq ar-werkstatt-mode-map
(let ((map emacs-lisp-mode-map))
(and (ignore-errors (require 'easymenu) t)
(easy-menu-define
ar-werkstatt-menu map "Werkstatt Mode menu"
`("Werkstatt"
;; ("Move"
;; ar-thing-at-point-utils-nodelim-core-menu: ar-atpt-classes end
("Forms"
("Delimited"
["braced at point" ar-braced-atpt
:help " ‘ar-braced-atpt’
Return characters of [:braced:] delimited form at point as string if any, nil otherwise. "]
["bracketed at point" ar-bracketed-atpt
:help " ‘ar-bracketed-atpt’
Return characters of [:bracketed:] delimited form at point as string if any, nil otherwise. "]
["lesserangled at point" ar-lesserangled-atpt
:help " ‘ar-lesserangled-atpt’
Return characters of [:lesserangled:] delimited form at point as string if any, nil otherwise. "]
["greaterangled at point" ar-greaterangled-atpt
:help " ‘ar-greaterangled-atpt’
Return characters of [:greaterangled:] delimited form at point as string if any, nil otherwise. "]
["curvedsinglequoted at point" ar-curvedsinglequoted-atpt
:help " ‘ar-curvedsinglequoted-atpt’
Return characters of [:curvedsinglequoted:] delimited form at point as string if any, nil otherwise. "]
["parentized at point" ar-parentized-atpt
:help " ‘ar-parentized-atpt’
Return characters of [:parentized:] delimited form at point as string if any, nil otherwise. "]
"-"
["backslashed at point" ar-backslashed-atpt
:help " ‘ar-backslashed-atpt’
Return characters of [:backslashed:] delimited form at point as string if any, nil otherwise. "]
["dollared at point" ar-dollared-atpt
:help " ‘ar-dollared-atpt’
Return characters of [:dollared:] delimited form at point as string if any, nil otherwise. "]
["doublequoted at point" ar-doublequoted-atpt
:help " ‘ar-doublequoted-atpt’
Return characters of [:doublequoted:] delimited form at point as string if any, nil otherwise. "]
["equalized at point" ar-equalized-atpt
:help " ‘ar-equalized-atpt’
Return characters of [:equalized:] delimited form at point as string if any, nil otherwise. "]
["hyphened at point" ar-hyphened-atpt
:help " ‘ar-hyphened-atpt’
Return characters of [:hyphened:] delimited form at point as string if any, nil otherwise. "]
["quoted at point" ar-quoted-atpt
:help " ‘ar-quoted-atpt’
Return characters of [:quoted:] delimited form at point as string if any, nil otherwise. "]
["singlequoted at point" ar-singlequoted-atpt
:help " ‘ar-singlequoted-atpt’
Return characters of [:singlequoted:] delimited form at point as string if any, nil otherwise. "]
["slashed at point" ar-slashed-atpt
:help " ‘ar-slashed-atpt’
Return characters of [:slashed:] delimited form at point as string if any, nil otherwise. "]
["underscored at point" ar-underscored-atpt
:help " ‘ar-underscored-atpt’
Return characters of [:underscored:] delimited form at point as string if any, nil otherwise. "]
["whitespaced at point" ar-whitespaced-atpt
:help " ‘ar-whitespaced-atpt’
Return characters of [:whitespaced:] delimited form at point as string if any, nil otherwise. "]
)
("Character Classes"
["[:alnum:] character class at point" ar-alnum-atpt
:help " ‘ar-alnum-atpt’
Return characters of class [:alnum:] at point as string if any, nil otherwise. "]
["[:alpha:] character class at point" ar-alpha-atpt
:help " ‘ar-alpha-atpt’
Return characters of class [:alpha:] at point as string if any, nil otherwise. "]
["[:ascii:] character class at point" ar-ascii-atpt
:help " ‘ar-ascii-atpt’
Return characters of class [:ascii:] at point as string if any, nil otherwise. "]
["[:blank:] character class at point" ar-blank-atpt
:help " ‘ar-blank-atpt’
Return characters of class [:blank:] at point as string if any, nil otherwise. "]
["[:cntrl:] character class at point" ar-cntrl-atpt
:help " ‘ar-cntrl-atpt’
Return characters of class [:cntrl:] at point as string if any, nil otherwise. "]
["[:digit:] character class at point" ar-digit-atpt
:help " ‘ar-digit-atpt’
Return characters of class [:digit:] at point as string if any, nil otherwise. "]
["[:graph:] character class at point" ar-graph-atpt
:help " ‘ar-graph-atpt’
Return characters of class [:graph:] at point as string if any, nil otherwise. "]
["[:lower:] character class at point" ar-lower-atpt
:help " ‘ar-lower-atpt’
Return characters of class [:lower:] at point as string if any, nil otherwise. "]
["[:nonascii:] character class at point" ar-nonascii-atpt
:help " ‘ar-nonascii-atpt’
Return characters of class [:nonascii:] at point as string if any, nil otherwise. "]
["[:print:] character class at point" ar-print-atpt
:help " ‘ar-print-atpt’
Return characters of class [:print:] at point as string if any, nil otherwise. "]
["[:punct:] character class at point" ar-punct-atpt
:help " ‘ar-punct-atpt’
Return characters of class [:punct:] at point as string if any, nil otherwise. "]
["[:space:] character class at point" ar-space-atpt
:help " ‘ar-space-atpt’
Return characters of class [:space:] at point as string if any, nil otherwise. "]
["[:upper:] character class at point" ar-upper-atpt
:help " ‘ar-upper-atpt’
Return characters of class [:upper:] at point as string if any, nil otherwise. "]
["[:xdigit:] character class at point" ar-xdigit-atpt
:help " ‘ar-xdigit-atpt’
Return characters of class [:xdigit:] at point as string if any, nil otherwise. "]
)
("Other"
["Angled-No-Nest at point" ar-anglednonest-atpt
:help " ‘ar-anglednonest-atpt’
Return characters of ANGLED-NO-NEST at point as string if any, nil otherwise. "]
["Greater-Angled-Nested at point" ar-greateranglednested-atpt
:help " ‘ar-greateranglednested-atpt’
Return characters of GREATER-ANGLED-NESTED at point as string if any, nil otherwise. "]
["Lesser-Angled-Nested at point" ar-lesseranglednested-atpt
:help " ‘ar-lesseranglednested-atpt’
Return characters of LESSER-ANGLED-NESTED at point as string if any, nil otherwise. "]
["Buffer at point" ar-buffer-atpt
:help " ‘ar-buffer-atpt’
Return characters of BUFFER at point as string if any, nil otherwise. "]
["Comment at point" ar-comment-atpt
:help " ‘ar-comment-atpt’
Return characters of COMMENT at point as string if any, nil otherwise. "]
["Csv at point" ar-csv-atpt
:help " ‘ar-csv-atpt’
Return characters of CSV at point as string if any, nil otherwise. "]
["Date at point" ar-date-atpt
:help " ‘ar-date-atpt’
Return characters of DATE at point as string if any, nil otherwise. "]
["Defun at point" ar-defun-atpt
:help " ‘ar-defun-atpt’
Return characters of DEFUN at point as string if any, nil otherwise. "]
["Delimited at point" ar-delimited-atpt
:help " ‘ar-delimited-atpt’
Return characters of DELIMITED at point as string if any, nil otherwise. "]
["Email at point" ar-email-atpt
:help " ‘ar-email-atpt’
Return characters of EMAIL at point as string if any, nil otherwise. "]
["Filename at point" ar-filename-atpt
:help " ‘ar-filename-atpt’
Return characters of FILENAME at point as string if any, nil otherwise. "]
["Filename-nondirectory at point" ar-filenamenondirectory-atpt
:help " ‘ar-filename-atpt’
Return characters of nondirectory-part of FILENAME at point as string if any, nil otherwise. "]
["Float at point" ar-float-atpt
:help " ‘ar-float-atpt’
Return characters of FLOAT at point as string if any, nil otherwise. "]
["Function at point" ar-function-atpt
:help " ‘ar-function-atpt’
Return characters of FUNCTION at point as string if any, nil otherwise. "]
["Ip at point" ar-ip-atpt
:help " ‘ar-ip-atpt’
Return characters of IP at point as string if any, nil otherwise. "]
["Isbn at point" ar-isbn-atpt
:help " ‘ar-isbn-atpt’
Return characters of ISBN at point as string if any, nil otherwise. "]
["Line at point" ar-line-atpt
:help " ‘ar-line-atpt’
Return characters of LINE at point as string if any, nil otherwise. "]
["Name at point" ar-name-atpt
:help " ‘ar-name-atpt’
Return characters of NAME at point as string if any, nil otherwise. "]
["Number at point" ar-number-atpt
:help " ‘ar-number-atpt’
Return characters of NUMBER at point as string if any, nil otherwise. "]
["Page at point" ar-page-atpt
:help " ‘ar-page-atpt’
Return characters of PAGE at point as string if any, nil otherwise. "]
["Paragraph at point" ar-paragraph-atpt
:help " ‘ar-paragraph-atpt’
Return characters of PARAGRAPH at point as string if any, nil otherwise. "]
["Paren at point" ar-paren-atpt
:help " ‘ar-paren-atpt’
Return characters of PAREN at point as string if any, nil otherwise. "]
["Phone at point" ar-phone-atpt
:help " ‘ar-phone-atpt’
Return characters of PHONE at point as string if any, nil otherwise. "]
["Region at point" ar-region-atpt
:help " ‘ar-region-atpt’
Return characters of REGION at point as string if any, nil otherwise. "]
["Sentence at point" ar-sentence-atpt
:help " ‘ar-sentence-atpt’
Return characters of SENTENCE at point as string if any, nil otherwise. "]
["Sexp at point" ar-sexp-atpt
:help " ‘ar-sexp-atpt’
Return characters of SEXP at point as string if any, nil otherwise. "]
["String at point" ar-string-atpt
:help " ‘ar-string-atpt’
Return characters of STRING at point as string if any, nil otherwise. "]
["Sh-Struct at point" ar-shstruct-atpt
:help " ‘ar-shstruct-atpt’
Return characters of SH-STRUCT at point as string if any, nil otherwise. "]
["Symbol at point" ar-symbol-atpt
:help " ‘ar-symbol-atpt’
Return characters of SYMBOL at point as string if any, nil otherwise. "]
["Url at point" ar-url-atpt
:help " ‘ar-url-atpt’
Return characters of URL at point as string if any, nil otherwise. "]
["Word at point" ar-word-atpt
:help " ‘ar-word-atpt’
Return characters of WORD at point as string if any, nil otherwise. "]
["Word-Alpha-Only at point" ar-wordalphaonly-atpt
:help " ‘ar-wordalphaonly-atpt’
Return characters of WORD-ALPHA-ONLY at point as string if any, nil otherwise. "]
)
)
("Edit"
("Copy"
("Character classes"
["Copy [:alnum:] char class at point" ar-copy-alnum-atpt
:help " ‘ar-copy-alnum-atpt’
Copy ALNUM at point if any, nil otherwise. "]
["Copy [:alpha:] char class at point" ar-copy-alpha-atpt
:help " ‘ar-copy-alpha-atpt’
Copy ALPHA at point if any, nil otherwise. "]
["Copy [:ascii:] char class at point" ar-copy-ascii-atpt
:help " ‘ar-copy-ascii-atpt’
Copy ASCII at point if any, nil otherwise. "]
["Copy [:blank:] char class at point" ar-copy-blank-atpt
:help " ‘ar-copy-blank-atpt’
Copy BLANK at point if any, nil otherwise. "]
["Copy [:cntrl:] char class at point" ar-copy-cntrl-atpt
:help " ‘ar-copy-cntrl-atpt’
Copy CNTRL at point if any, nil otherwise. "]
["Copy [:digit:] char class at point" ar-copy-digit-atpt
:help " ‘ar-copy-digit-atpt’
Copy DIGIT at point if any, nil otherwise. "]
["Copy [:graph:] char class at point" ar-copy-graph-atpt
:help " ‘ar-copy-graph-atpt’
Copy GRAPH at point if any, nil otherwise. "]
["Copy [:lower:] char class at point" ar-copy-lower-atpt
:help " ‘ar-copy-lower-atpt’
Copy LOWER at point if any, nil otherwise. "]
["Copy [:nonascii:] char class at point" ar-copy-nonascii-atpt
:help " ‘ar-copy-nonascii-atpt’
Copy NONASCII at point if any, nil otherwise. "]
["Copy [:print:] char class at point" ar-copy-print-atpt
:help " ‘ar-copy-print-atpt’
Copy PRINT at point if any, nil otherwise. "]
["Copy [:punct:] char class at point" ar-copy-punct-atpt
:help " ‘ar-copy-punct-atpt’
Copy PUNCT at point if any, nil otherwise. "]
["Copy [:space:] char class at point" ar-copy-space-atpt
:help " ‘ar-copy-space-atpt’
Copy SPACE at point if any, nil otherwise. "]
["Copy [:upper:] char class at point" ar-copy-upper-atpt
:help " ‘ar-copy-upper-atpt’
Copy UPPER at point if any, nil otherwise. "]
["Copy [:xdigit:] char class at point" ar-copy-xdigit-atpt
:help " ‘ar-copy-xdigit-atpt’
Copy XDIGIT at point if any, nil otherwise. "]
)
("Delimited"
["Copy BRACED at point" ar-copy-braced-atpt
:help " ‘ar-copy-braced-atpt’
Copy BRACED at point if any, nil otherwise. "]
["Copy BRACKETED at point" ar-copy-bracketed-atpt
:help " ‘ar-copy-bracketed-atpt’
Copy BRACKETED at point if any, nil otherwise. "]
["Copy LESSER-ANGLED at point" ar-copy-lesserangled-atpt
:help " ‘ar-copy-lesserangled-atpt’
Copy LESSER-ANGLED at point if any, nil otherwise. "]
["Copy GREATER-ANGLED at point" ar-copy-greaterangled-atpt
:help " ‘ar-copy-greaterangled-atpt’
Copy GREATER-ANGLED at point if any, nil otherwise. "]
["Copy LEFT-RIGHT-SINGLEQUOTED at point" ar-copy-curvedsinglequoted-atpt
:help " ‘ar-copy-curvedsinglequoted-atpt’
Copy LEFT-RIGHT-SINGLEQUOTED at point if any, nil otherwise. "]
["Copy PARENTIZED at point" ar-copy-parentized-atpt
:help " ‘ar-copy-parentized-atpt’
Copy PARENTIZED at point if any, nil otherwise. "]
["Copy BACKSLASHED at point" ar-copy-backslashed-atpt
:help " ‘ar-copy-backslashed-atpt’
Copy BACKSLASHED at point if any, nil otherwise. "]
["Copy DOLLARED at point" ar-copy-dollared-atpt
:help " ‘ar-copy-dollared-atpt’
Copy DOLLARED at point if any, nil otherwise. "]
["Copy DOUBLEQUOTED at point" ar-copy-doublequoted-atpt
:help " ‘ar-copy-doublequoted-atpt’
Copy DOUBLEQUOTED at point if any, nil otherwise. "]
["Copy EQUALIZED at point" ar-copy-equalized-atpt
:help " ‘ar-copy-equalized-atpt’
Copy EQUALIZED at point if any, nil otherwise. "]
["Copy HYPHENED at point" ar-copy-hyphened-atpt
:help " ‘ar-copy-hyphened-atpt’
Copy HYPHENED at point if any, nil otherwise. "]
["Copy QUOTED at point" ar-copy-quoted-atpt
:help " ‘ar-copy-quoted-atpt’
Copy QUOTED at point if any, nil otherwise. "]
["Copy SINGLEQUOTED at point" ar-copy-singlequoted-atpt
:help " ‘ar-copy-singlequoted-atpt’
Copy SINGLEQUOTED at point if any, nil otherwise. "]
["Copy SLASHED at point" ar-copy-slashed-atpt
:help " ‘ar-copy-slashed-atpt’
Copy SLASHED at point if any, nil otherwise. "]
["Copy UNDERSCORED at point" ar-copy-underscored-atpt
:help " ‘ar-copy-underscored-atpt’
Copy UNDERSCORED at point if any, nil otherwise. "]
["Copy WHITESPACED at point" ar-copy-whitespaced-atpt
:help " ‘ar-copy-whitespaced-atpt’
Copy WHITESPACED at point if any, nil otherwise. "]
)
("Other"
["Copy ANGLED-NO-NEST at point" ar-copyanglednonest-atpt
:help " ‘ar-copyanglednonest-atpt’
Copy ANGLED-NO-NEST at point if any, nil otherwise. "]
["Copy GREATER-ANGLED-NESTED at point" ar-copy-greateranglednested-atpt
:help " ‘ar-copy-greateranglednested-atpt’
Copy GREATER-ANGLED-NESTED at point if any, nil otherwise. "]
["Copy LESSER-ANGLED-NESTED at point" ar-copy-lesseranglednested-atpt
:help " ‘ar-copy-lesseranglednested-atpt’
Copy LESSER-ANGLED-NESTED at point if any, nil otherwise. "]
["Copy BUFFER at point" ar-copy-buffer-atpt
:help " ‘ar-copy-buffer-atpt’
Copy BUFFER at point if any, nil otherwise. "]
["Copy COMMENT at point" ar-copy-comment-atpt
:help " ‘ar-copy-comment-atpt’
Copy COMMENT at point if any, nil otherwise. "]
["Copy CSV at point" ar-copy-csv-atpt
:help " ‘ar-copy-csv-atpt’
Copy CSV at point if any, nil otherwise. "]
["Copy DATE at point" ar-copy-date-atpt
:help " ‘ar-copy-date-atpt’
Copy DATE at point if any, nil otherwise. "]
["Copy DEFUN at point" ar-copy-defun-atpt
:help " ‘ar-copy-defun-atpt’
Copy DEFUN at point if any, nil otherwise. "]
["Copy DELIMITED at point" ar-copy-delimited-atpt
:help " ‘ar-copy-delimited-atpt’
Copy DELIMITED at point if any, nil otherwise. "]
["Copy EMAIL at point" ar-copy-email-atpt
:help " ‘ar-copy-email-atpt’
Copy EMAIL at point if any, nil otherwise. "]
["Copy FILENAME at point" ar-copy-filename-atpt
:help " ‘ar-copy-filename-atpt’
Copy FILENAME at point if any, nil otherwise. "]
["Copy FILENAME without directory" ar-copy-filenamenondirectory-atpt
:help " ‘ar-copy-filename-atpt’
Copy FILENAME without directory at point if any, nil otherwise. "]
["Copy FLOAT at point" ar-copy-float-atpt
:help " ‘ar-copy-float-atpt’
Copy FLOAT at point if any, nil otherwise. "]
["Copy FUNCTION at point" ar-copy-function-atpt
:help " ‘ar-copy-function-atpt’
Copy FUNCTION at point if any, nil otherwise. "]
["Copy IP at point" ar-copy-ip-atpt
:help " ‘ar-copy-ip-atpt’
Copy IP at point if any, nil otherwise. "]
["Copy ISBN at point" ar-copy-isbn-atpt
:help " ‘ar-copy-isbn-atpt’
Copy ISBN at point if any, nil otherwise. "]
["Copy LINE at point" ar-copy-line-atpt
:help " ‘ar-copy-line-atpt’
Copy LINE at point if any, nil otherwise. "]
["Copy NAME at point" ar-copy-name-atpt
:help " ‘ar-copy-name-atpt’
Copy NAME at point if any, nil otherwise. "]
["Copy NUMBER at point" ar-copy-number-atpt
:help " ‘ar-copy-number-atpt’
Copy NUMBER at point if any, nil otherwise. "]
["Copy PAGE at point" ar-copy-page-atpt
:help " ‘ar-copy-page-atpt’
Copy PAGE at point if any, nil otherwise. "]
["Copy PARAGRAPH at point" ar-copy-paragraph-atpt
:help " ‘ar-copy-paragraph-atpt’
Copy PARAGRAPH at point if any, nil otherwise. "]
["Copy PAREN at point" ar-copy-paren-atpt
:help " ‘ar-copy-paren-atpt’
Copy PAREN at point if any, nil otherwise. "]
["Copy PHONE at point" ar-copy-phone-atpt
:help " ‘ar-copy-phone-atpt’
Copy PHONE at point if any, nil otherwise. "]
["Copy REGION at point" ar-copy-region-atpt
:help " ‘ar-copy-region-atpt’
Copy REGION at point if any, nil otherwise. "]
["Copy SENTENCE at point" ar-copy-sentence-atpt
:help " ‘ar-copy-sentence-atpt’
Copy SENTENCE at point if any, nil otherwise. "]
["Copy SEXP at point" ar-copy-sexp-atpt
:help " ‘ar-copy-sexp-atpt’
Copy SEXP at point if any, nil otherwise. "]
["Copy STRING at point" ar-copy-string-atpt
:help " ‘ar-copy-string-atpt’
Copy STRING at point if any, nil otherwise. "]
["Copy SH-STRUCT at point" ar-copy-shstruct-atpt
:help " ‘ar-copy-shstruct-atpt’
Copy SH-STRUCT at point if any, nil otherwise. "]
["Copy SYMBOL at point" ar-copy-symbol-atpt
:help " ‘ar-copy-symbol-atpt’
Copy SYMBOL at point if any, nil otherwise. "]
["Copy URL at point" ar-copy-url-atpt
:help " ‘ar-copy-url-atpt’
Copy URL at point if any, nil otherwise. "]
["Copy WORD at point" ar-copy-word-atpt
:help " ‘ar-copy-word-atpt’
Copy WORD at point if any, nil otherwise. "]
["Copy WORD-ALPHA-ONLY at point" ar-copy-wordalphaonly-atpt
:help " ‘ar-copy-wordalphaonly-atpt’
Copy WORD-ALPHA-ONLY at point if any, nil otherwise. "]
)
)
("Delete"
("Character classes"
["Delete [:alnum:] char class at point" ar-delete-alnum-atpt
:help " ‘ar-delete-alnum-atpt’
Delete ALNUM at point if any, nil otherwise. "]
["Delete [:alpha:] char class at point" ar-delete-alpha-atpt
:help " ‘ar-delete-alpha-atpt’
Delete ALPHA at point if any, nil otherwise. "]
["Delete [:ascii:] char class at point" ar-delete-ascii-atpt
:help " ‘ar-delete-ascii-atpt’
Delete ASCII at point if any, nil otherwise. "]
["Delete [:blank:] char class at point" ar-delete-blank-atpt
:help " ‘ar-delete-blank-atpt’
Delete BLANK at point if any, nil otherwise. "]
["Delete [:cntrl:] char class at point" ar-delete-cntrl-atpt
:help " ‘ar-delete-cntrl-atpt’
Delete CNTRL at point if any, nil otherwise. "]
["Delete [:digit:] char class at point" ar-delete-digit-atpt
:help " ‘ar-delete-digit-atpt’
Delete DIGIT at point if any, nil otherwise. "]
["Delete [:graph:] char class at point" ar-delete-graph-atpt
:help " ‘ar-delete-graph-atpt’
Delete GRAPH at point if any, nil otherwise. "]
["Delete [:lower:] char class at point" ar-delete-lower-atpt
:help " ‘ar-delete-lower-atpt’
Delete LOWER at point if any, nil otherwise. "]
["Delete [:nonascii:] char class at point" ar-delete-nonascii-atpt
:help " ‘ar-delete-nonascii-atpt’
Delete NONASCII at point if any, nil otherwise. "]
["Delete [:print:] char class at point" ar-delete-print-atpt
:help " ‘ar-delete-print-atpt’
Delete PRINT at point if any, nil otherwise. "]
["Delete [:punct:] char class at point" ar-delete-punct-atpt
:help " ‘ar-delete-punct-atpt’
Delete PUNCT at point if any, nil otherwise. "]
["Delete [:space:] char class at point" ar-delete-space-atpt
:help " ‘ar-delete-space-atpt’
Delete SPACE at point if any, nil otherwise. "]
["Delete [:upper:] char class at point" ar-delete-upper-atpt
:help " ‘ar-delete-upper-atpt’
Delete UPPER at point if any, nil otherwise. "]
["Delete [:xdigit:] char class at point" ar-delete-xdigit-atpt
:help " ‘ar-delete-xdigit-atpt’
Delete XDIGIT at point if any, nil otherwise. "]
)
("Delimited"
["Delete BRACED at point" ar-delete-braced-atpt
:help " ‘ar-delete-braced-atpt’
Delete BRACED at point if any, nil otherwise. "]
["Delete BRACKETED at point" ar-delete-bracketed-atpt
:help " ‘ar-delete-bracketed-atpt’
Delete BRACKETED at point if any, nil otherwise. "]
["Delete LESSER-ANGLED at point" ar-delete-lesserangled-atpt
:help " ‘ar-delete-lesserangled-atpt’
Delete LESSER-ANGLED at point if any, nil otherwise. "]
["Delete GREATER-ANGLED at point" ar-delete-greaterangled-atpt
:help " ‘ar-delete-greaterangled-atpt’
Delete GREATER-ANGLED at point if any, nil otherwise. "]
["Delete LEFT-RIGHT-SINGLEQUOTED at point" ar-delete-curvedsinglequoted-atpt
:help " ‘ar-delete-curvedsinglequoted-atpt’
Delete LEFT-RIGHT-SINGLEQUOTED at point if any, nil otherwise. "]
["Delete PARENTIZED at point" ar-delete-parentized-atpt
:help " ‘ar-delete-parentized-atpt’
Delete PARENTIZED at point if any, nil otherwise. "]
["Delete BACKSLASHED at point" ar-delete-backslashed-atpt
:help " ‘ar-delete-backslashed-atpt’
Delete BACKSLASHED at point if any, nil otherwise. "]
["Delete DOLLARED at point" ar-delete-dollared-atpt
:help " ‘ar-delete-dollared-atpt’
Delete DOLLARED at point if any, nil otherwise. "]
["Delete DOUBLEQUOTED at point" ar-delete-doublequoted-atpt
:help " ‘ar-delete-doublequoted-atpt’
Delete DOUBLEQUOTED at point if any, nil otherwise. "]
["Delete EQUALIZED at point" ar-delete-equalized-atpt
:help " ‘ar-delete-equalized-atpt’
Delete EQUALIZED at point if any, nil otherwise. "]
["Delete HYPHENED at point" ar-delete-hyphened-atpt
:help " ‘ar-delete-hyphened-atpt’
Delete HYPHENED at point if any, nil otherwise. "]
["Delete QUOTED at point" ar-delete-quoted-atpt
:help " ‘ar-delete-quoted-atpt’
Delete QUOTED at point if any, nil otherwise. "]
["Delete SINGLEQUOTED at point" ar-delete-singlequoted-atpt
:help " ‘ar-delete-singlequoted-atpt’
Delete SINGLEQUOTED at point if any, nil otherwise. "]
["Delete SLASHED at point" ar-delete-slashed-atpt
:help " ‘ar-delete-slashed-atpt’
Delete SLASHED at point if any, nil otherwise. "]
["Delete UNDERSCORED at point" ar-delete-underscored-atpt
:help " ‘ar-delete-underscored-atpt’
Delete UNDERSCORED at point if any, nil otherwise. "]
["Delete WHITESPACED at point" ar-delete-whitespaced-atpt
:help " ‘ar-delete-whitespaced-atpt’
Delete WHITESPACED at point if any, nil otherwise. "]
)
("Other"
["Delete ANGLED-NO-NEST at point" ar-deleteanglednonest-atpt
:help " ‘ar-deleteanglednonest-atpt’
Delete ANGLED-NO-NEST at point if any, nil otherwise. "]
["Delete GREATER-ANGLED-NESTED at point" ar-delete-greateranglednested-atpt
:help " ‘ar-delete-greateranglednested-atpt’
Delete GREATER-ANGLED-NESTED at point if any, nil otherwise. "]
["Delete LESSER-ANGLED-NESTED at point" ar-delete-lesseranglednested-atpt
:help " ‘ar-delete-lesseranglednested-atpt’
Delete LESSER-ANGLED-NESTED at point if any, nil otherwise. "]
["Delete BUFFER at point" ar-delete-buffer-atpt
:help " ‘ar-delete-buffer-atpt’
Delete BUFFER at point if any, nil otherwise. "]
["Delete COMMENT at point" ar-delete-comment-atpt
:help " ‘ar-delete-comment-atpt’
Delete COMMENT at point if any, nil otherwise. "]
["Delete CSV at point" ar-delete-csv-atpt
:help " ‘ar-delete-csv-atpt’
Delete CSV at point if any, nil otherwise. "]
["Delete DATE at point" ar-delete-date-atpt
:help " ‘ar-delete-date-atpt’
Delete DATE at point if any, nil otherwise. "]
["Delete DEFUN at point" ar-delete-defun-atpt
:help " ‘ar-delete-defun-atpt’
Delete DEFUN at point if any, nil otherwise. "]
["Delete DELIMITED at point" ar-delete-delimited-atpt
:help " ‘ar-delete-delimited-atpt’
Delete DELIMITED at point if any, nil otherwise. "]
["Delete EMAIL at point" ar-delete-email-atpt
:help " ‘ar-delete-email-atpt’
Delete EMAIL at point if any, nil otherwise. "]
["Delete FILENAME at point" ar-delete-filename-atpt
:help " ‘ar-delete-filename-atpt’
Delete FILENAME at point if any, nil otherwise. "]
["Delete FLOAT at point" ar-delete-float-atpt
:help " ‘ar-delete-float-atpt’
Delete FLOAT at point if any, nil otherwise. "]
["Delete FUNCTION at point" ar-delete-function-atpt
:help " ‘ar-delete-function-atpt’
Delete FUNCTION at point if any, nil otherwise. "]
["Delete IP at point" ar-delete-ip-atpt
:help " ‘ar-delete-ip-atpt’
Delete IP at point if any, nil otherwise. "]
["Delete ISBN at point" ar-delete-isbn-atpt
:help " ‘ar-delete-isbn-atpt’
Delete ISBN at point if any, nil otherwise. "]
["Delete LINE at point" ar-delete-line-atpt
:help " ‘ar-delete-line-atpt’
Delete LINE at point if any, nil otherwise. "]
["Delete NAME at point" ar-delete-name-atpt
:help " ‘ar-delete-name-atpt’
Delete NAME at point if any, nil otherwise. "]
["Delete NUMBER at point" ar-delete-number-atpt
:help " ‘ar-delete-number-atpt’
Delete NUMBER at point if any, nil otherwise. "]
["Delete PAGE at point" ar-delete-page-atpt
:help " ‘ar-delete-page-atpt’
Delete PAGE at point if any, nil otherwise. "]
["Delete PARAGRAPH at point" ar-delete-paragraph-atpt
:help " ‘ar-delete-paragraph-atpt’
Delete PARAGRAPH at point if any, nil otherwise. "]
["Delete PAREN at point" ar-delete-paren-atpt
:help " ‘ar-delete-paren-atpt’
Delete PAREN at point if any, nil otherwise. "]
["Delete PHONE at point" ar-delete-phone-atpt
:help " ‘ar-delete-phone-atpt’
Delete PHONE at point if any, nil otherwise. "]
["Delete REGION at point" ar-delete-region-atpt
:help " ‘ar-delete-region-atpt’
Delete REGION at point if any, nil otherwise. "]
["Delete SENTENCE at point" ar-delete-sentence-atpt
:help " ‘ar-delete-sentence-atpt’
Delete SENTENCE at point if any, nil otherwise. "]
["Delete SEXP at point" ar-delete-sexp-atpt
:help " ‘ar-delete-sexp-atpt’
Delete SEXP at point if any, nil otherwise. "]
["Delete STRING at point" ar-delete-string-atpt
:help " ‘ar-delete-string-atpt’
Delete STRING at point if any, nil otherwise. "]
["Delete SH-STRUCT at point" ar-delete-shstruct-atpt
:help " ‘ar-delete-shstruct-atpt’
Delete SH-STRUCT at point if any, nil otherwise. "]
["Delete SYMBOL at point" ar-delete-symbol-atpt
:help " ‘ar-delete-symbol-atpt’
Delete SYMBOL at point if any, nil otherwise. "]
["Delete URL at point" ar-delete-url-atpt
:help " ‘ar-delete-url-atpt’
Delete URL at point if any, nil otherwise. "]
["Delete WORD at point" ar-delete-word-atpt
:help " ‘ar-delete-word-atpt’
Delete WORD at point if any, nil otherwise. "]
["Delete WORD-ALPHA-ONLY at point" ar-delete-wordalphaonly-atpt
:help " ‘ar-delete-wordalphaonly-atpt’
Delete WORD-ALPHA-ONLY at point if any, nil otherwise. "]
)
)
("Bracket"
("Character classes"
["Bracket [:alnum:] char class at point" ar-bracket-alnum-atpt
:help " ‘ar-bracket-alnum-atpt’
Bracket ALNUM at point if any, nil otherwise. "]
["Bracket [:alpha:] char class at point" ar-bracket-alpha-atpt
:help " ‘ar-bracket-alpha-atpt’
Bracket ALPHA at point if any, nil otherwise. "]
["Bracket [:ascii:] char class at point" ar-bracket-ascii-atpt
:help " ‘ar-bracket-ascii-atpt’
Bracket ASCII at point if any, nil otherwise. "]
["Bracket [:blank:] char class at point" ar-bracket-blank-atpt
:help " ‘ar-bracket-blank-atpt’
Bracket BLANK at point if any, nil otherwise. "]
["Bracket [:cntrl:] char class at point" ar-bracket-cntrl-atpt
:help " ‘ar-bracket-cntrl-atpt’
Bracket CNTRL at point if any, nil otherwise. "]
["Bracket [:digit:] char class at point" ar-bracket-digit-atpt
:help " ‘ar-bracket-digit-atpt’
Bracket DIGIT at point if any, nil otherwise. "]
["Bracket [:graph:] char class at point" ar-bracket-graph-atpt
:help " ‘ar-bracket-graph-atpt’
Bracket GRAPH at point if any, nil otherwise. "]
["Bracket [:lower:] char class at point" ar-bracket-lower-atpt
:help " ‘ar-bracket-lower-atpt’
Bracket LOWER at point if any, nil otherwise. "]
["Bracket [:nonascii:] char class at point" ar-bracket-nonascii-atpt
:help " ‘ar-bracket-nonascii-atpt’
Bracket NONASCII at point if any, nil otherwise. "]
["Bracket [:print:] char class at point" ar-bracket-print-atpt
:help " ‘ar-bracket-print-atpt’
Bracket PRINT at point if any, nil otherwise. "]
["Bracket [:punct:] char class at point" ar-bracket-punct-atpt
:help " ‘ar-bracket-punct-atpt’
Bracket PUNCT at point if any, nil otherwise. "]
["Bracket [:space:] char class at point" ar-bracket-space-atpt
:help " ‘ar-bracket-space-atpt’
Bracket SPACE at point if any, nil otherwise. "]
["Bracket [:upper:] char class at point" ar-bracket-upper-atpt
:help " ‘ar-bracket-upper-atpt’
Bracket UPPER at point if any, nil otherwise. "]
["Bracket [:xdigit:] char class at point" ar-bracket-xdigit-atpt
:help " ‘ar-bracket-xdigit-atpt’
Bracket XDIGIT at point if any, nil otherwise. "]
)
("Delimited"
["Bracket BRACED at point" ar-bracket-braced-atpt
:help " ‘ar-bracket-braced-atpt’
Bracket BRACED at point if any, nil otherwise. "]
["Bracket BRACKETED at point" ar-bracket-bracketed-atpt
:help " ‘ar-bracket-bracketed-atpt’
Bracket BRACKETED at point if any, nil otherwise. "]
["Bracket LESSER-ANGLED at point" ar-bracket-lesserangled-atpt
:help " ‘ar-bracket-lesserangled-atpt’
Bracket LESSER-ANGLED at point if any, nil otherwise. "]
["Bracket GREATER-ANGLED at point" ar-bracket-greaterangled-atpt
:help " ‘ar-bracket-greaterangled-atpt’
Bracket GREATER-ANGLED at point if any, nil otherwise. "]
["Bracket LEFT-RIGHT-SINGLEQUOTED at point" ar-bracket-curvedsinglequoted-atpt
:help " ‘ar-bracket-curvedsinglequoted-atpt’
Bracket LEFT-RIGHT-SINGLEQUOTED at point if any, nil otherwise. "]
["Bracket PARENTIZED at point" ar-bracket-parentized-atpt
:help " ‘ar-bracket-parentized-atpt’
Bracket PARENTIZED at point if any, nil otherwise. "]
["Bracket BACKSLASHED at point" ar-bracket-backslashed-atpt
:help " ‘ar-bracket-backslashed-atpt’
Bracket BACKSLASHED at point if any, nil otherwise. "]
["Bracket DOLLARED at point" ar-bracket-dollared-atpt
:help " ‘ar-bracket-dollared-atpt’
Bracket DOLLARED at point if any, nil otherwise. "]
["Bracket DOUBLEQUOTED at point" ar-bracket-doublequoted-atpt
:help " ‘ar-bracket-doublequoted-atpt’
Bracket DOUBLEQUOTED at point if any, nil otherwise. "]
["Bracket EQUALIZED at point" ar-bracket-equalized-atpt
:help " ‘ar-bracket-equalized-atpt’
Bracket EQUALIZED at point if any, nil otherwise. "]
["Bracket HYPHENED at point" ar-bracket-hyphened-atpt
:help " ‘ar-bracket-hyphened-atpt’
Bracket HYPHENED at point if any, nil otherwise. "]
["Bracket QUOTED at point" ar-bracket-quoted-atpt
:help " ‘ar-bracket-quoted-atpt’
Bracket QUOTED at point if any, nil otherwise. "]
["Bracket SINGLEQUOTED at point" ar-bracket-singlequoted-atpt
:help " ‘ar-bracket-singlequoted-atpt’
Bracket SINGLEQUOTED at point if any, nil otherwise. "]
["Bracket SLASHED at point" ar-bracket-slashed-atpt
:help " ‘ar-bracket-slashed-atpt’
Bracket SLASHED at point if any, nil otherwise. "]
["Bracket UNDERSCORED at point" ar-bracket-underscored-atpt
:help " ‘ar-bracket-underscored-atpt’
Bracket UNDERSCORED at point if any, nil otherwise. "]
["Bracket WHITESPACED at point" ar-bracket-whitespaced-atpt
:help " ‘ar-bracket-whitespaced-atpt’
Bracket WHITESPACED at point if any, nil otherwise. "]
)
("Other"
["Bracket ANGLED-NO-NEST at point" ar-bracketanglednonest-atpt
:help " ‘ar-bracketanglednonest-atpt’
Bracket ANGLED-NO-NEST at point if any, nil otherwise. "]
["Bracket GREATER-ANGLED-NESTED at point" ar-bracket-greateranglednested-atpt
:help " ‘ar-bracket-greateranglednested-atpt’
Bracket GREATER-ANGLED-NESTED at point if any, nil otherwise. "]
["Bracket LESSER-ANGLED-NESTED at point" ar-bracket-lesseranglednested-atpt
:help " ‘ar-bracket-lesseranglednested-atpt’
Bracket LESSER-ANGLED-NESTED at point if any, nil otherwise. "]
["Bracket BUFFER at point" ar-bracket-buffer-atpt
:help " ‘ar-bracket-buffer-atpt’
Bracket BUFFER at point if any, nil otherwise. "]
["Bracket COMMENT at point" ar-bracket-comment-atpt
:help " ‘ar-bracket-comment-atpt’
Bracket COMMENT at point if any, nil otherwise. "]
["Bracket CSV at point" ar-bracket-csv-atpt
:help " ‘ar-bracket-csv-atpt’
Bracket CSV at point if any, nil otherwise. "]
["Bracket DATE at point" ar-bracket-date-atpt
:help " ‘ar-bracket-date-atpt’
Bracket DATE at point if any, nil otherwise. "]
["Bracket DEFUN at point" ar-bracket-defun-atpt
:help " ‘ar-bracket-defun-atpt’
Bracket DEFUN at point if any, nil otherwise. "]
["Bracket DELIMITED at point" ar-bracket-delimited-atpt
:help " ‘ar-bracket-delimited-atpt’
Bracket DELIMITED at point if any, nil otherwise. "]
["Bracket EMAIL at point" ar-bracket-email-atpt
:help " ‘ar-bracket-email-atpt’
Bracket EMAIL at point if any, nil otherwise. "]
["Bracket FILENAME at point" ar-bracket-filename-atpt
:help " ‘ar-bracket-filename-atpt’
Bracket FILENAME at point if any, nil otherwise. "]
["Bracket FLOAT at point" ar-bracket-float-atpt
:help " ‘ar-bracket-float-atpt’
Bracket FLOAT at point if any, nil otherwise. "]
["Bracket FUNCTION at point" ar-bracket-function-atpt
:help " ‘ar-bracket-function-atpt’