mirror of https://github.com/Chizi123/.emacs.d.git

Chizi123
2018-11-21 e75a20334813452c6912c090d70a0de2c805f94d
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
;ELC
;;; Compiled
;;; in Emacs version 26.1
;;; with all optimizations.
 
;;; This file contains utf-8 non-ASCII characters,
;;; and so cannot be loaded into Emacs 22 or earlier.
(and (boundp 'emacs-version)
     (< (aref emacs-version (1- (length emacs-version))) ?A)
     (string-lessp emacs-version "23")
     (error "`%s' was compiled for Emacs 23 or later" #$))
 
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
 
(byte-code "\300\301!\210\300\302!\210\300\303!\210\304\305!\204%\306\305\307\310B\"\210\311\305\312\313#\210\314\305\315\316#\210\300\207" [require dash thingatpt help-mode fboundp defvar-local defalias macro #[770 "\300\301F\302\303DDE\207" [progn defvar make-variable-buffer-local quote] 8 "Define VAR as a buffer-local variable with default value VAL.\nLike `defvar' but additionally marks the variable as being automatically\nbuffer-local wherever it is set.\n\n(fn VAR VAL &optional DOCSTRING)"] put edebug-form-spec defvar function-put doc-string-elt 3] 4)
#@536 Generate a cheat sheet of all the smartparens interactive functions.
 
Without a prefix argument, print only the short documentation and examples.
 
With non-nil prefix argument ARG, show the full documentation for each function.
 
You can follow the links to the function or variable help page.
To get back to the full list, use \[help-go-back].
 
You can use `beginning-of-defun' and `end-of-defun' to jump to
the previous/next entry.
 
Examples are fontified using the `font-lock-string-face' for
better orientation.
 
(fn &optional ARG)
(defalias 'sp-cheat-sheet #[256 "\211?\262\303\304\305\306\307\310!!\"A\311\211:\203:@\262:\2033@\312=\2033\313A!\2033AB\262A\262\202\211\237\266\203r\314\315!q\210p\316\317\320!\210\321 \210\322 \210\323\324!\210\325\326C\327\330!\"\210\317\320!\210\311\331\203\217@\211>\204\203\203~\211>\204\203\211B\262\210\211T\262A\262\202e\266\211\237\262\331\203@\332!\333\232\204\372`\311\334\332!\335\336#c\210\337c\210\340!\210\212\203\353b\210\341\324!\210\324y\210\342\343!\203\323\341\344!\210\202\327\341\324!\210`\262\345\346\311\316#\203\353\211\212\324y\210`)|\210)\334\347\350\351\352\"\347Q\335\336#c\266\210\211T\262A\262\202\226\266eb\210\345\353\311\316#\203#\354\355!\356@A\335\357$\266\202 eb\210\345\360\311\316#\2039\356`S`\335\361$\210\202&eb\210\345\362\311\316#\203P\356\324\224\324\225\335\363$\210\202<eb\210\345\364\311\316#\203g\356\331\224\331\225\335\365$\210\202S\366 \210eb\210+\367\315!\207" [load-history help-xref-following standard-output (smartparens-mode smartparens-global-mode turn-on-smartparens-mode turn-off-smartparens-mode sp-wrap-cancel sp-remove-active-pair-overlay sp-splice-sexp-killing-around show-smartparens-mode show-smartparens-global-mode turn-on-show-smartparens-mode turn-off-show-smartparens-mode) (sp-use-paredit-bindings sp-use-smartparens-bindings) assoc-string file-truename locate-library "smartparens" nil defun commandp get-buffer-create "*Smartparens cheat sheet*" t read-only-mode -1 erase-buffer help-mode smartparens-mode 1 help-setup-xref sp-cheat-sheet called-interactively-p interactive 0 symbol-name "advice-compilation" propertize face font-lock-function-name-face " is " describe-function-1 forward-paragraph looking-at "^It is bound" 2 re-search-forward "^Examples:" "\n\n" make-string 72 8213 "\\(->\\|​\\)" bounds-of-thing-at-point line put-text-property font-lock-string-face "|" font-lock-warning-face "^It is bound to \\(.*?\\)\\." font-lock-keyword-face ";;.*?$" font-lock-comment-face help-make-xrefs pop-to-buffer] 14 (#$ . 979) "P"])
#@99 Describe user's system.
 
The output of this function can be used in bug reports.
 
(fn STARTERKIT)
(defalias 'sp-describe-system #[257 "\305\306\307\310\"A@\211\203#\311\312!    >\204\313\314\315D\"\210\316H!\202$\317\262\320\n!\321\303!\2050 \322\323\324\325 #\320\f!&\326r\327\330!q\210\331 \210\332c\210c\210p)!\210\333!\207" [package-alist cl-struct-package-desc-tags major-mode smartparens-strict-mode system-type format "- `smartparens` version: %s\n- Active `major-mode`: `%s`\n- Smartparens strict mode: %s\n- Emacs version (`M-x emacs-version`): %s\n- Starterkit/Distribution: %s\n- OS: %s" assoc smartparens package-version-join type-of signal wrong-type-argument package-desc 2 "<Please specify manually>" symbol-name boundp replace-regexp-in-string "\n" "" emacs-version pop-to-buffer get-buffer-create "*sp-describe-system*" erase-buffer "The content of the buffer underneath the line was\ncopied to your clipboard.  You can also edit it in this buffer\nand then copy the results manually.\n------------------------------------------------\n" kill-new] 10 (#$ . 3606) (byte-code "\300\301\302\303\304E\"C\207" [completing-read "Starterkit/Distribution used: " "Spacemacs" "Evil" "Vanilla"] 5)])
#@41 Function to restrict the forward search
(defvar sp-forward-bound-fn nil (#$ . 4831))
(make-variable-buffer-local 'sp-forward-bound-fn)
#@42 Function to restrict the backward search
(defvar sp-backward-bound-fn nil (#$ . 4972))
(make-variable-buffer-local 'sp-backward-bound-fn)
#@155 Get the bound to limit the forward search for looking for pairs.
 
If it returns nil, the original bound passed to the search
function will be considered.
(defalias 'sp--get-forward-bound #[0 "\205 \207" [sp-forward-bound-fn] 1 (#$ . 5117)])
#@156 Get the bound to limit the backward search for looking for pairs.
 
If it returns nil, the original bound passed to the search
function will be considered.
(defalias 'sp--get-backward-bound #[0 "\205 \207" [sp-backward-bound-fn] 1 (#$ . 5369)])
#@37 Keymap used for `smartparens-mode'.
(defvar smartparens-mode-map (make-sparse-keymap) (#$ . 5623))
(byte-code "\300\301\302\"\210\303\301\302\304#\207" [defvaralias sp-keymap smartparens-mode-map make-obsolete-variable "2015-01-01"] 4)
#@115 Paredit inspired bindings.
 
Alist containing the default paredit bindings to corresponding
smartparens functions.
(defvar sp-paredit-bindings '(("C-M-f" . sp-forward-sexp) ("C-M-b" . sp-backward-sexp) ("C-M-u" . sp-backward-up-sexp) ("C-M-d" . sp-down-sexp) ("C-M-p" . sp-backward-down-sexp) ("C-M-n" . sp-up-sexp) ("M-s" . sp-splice-sexp) ("M-<up>" . sp-splice-sexp-killing-backward) ("M-<down>" . sp-splice-sexp-killing-forward) ("M-r" . sp-splice-sexp-killing-around) ("M-(" . sp-wrap-round) ("C-)" . sp-forward-slurp-sexp) ("C-<right>" . sp-forward-slurp-sexp) ("C-}" . sp-forward-barf-sexp) ("C-<left>" . sp-forward-barf-sexp) ("C-(" . sp-backward-slurp-sexp) ("C-M-<left>" . sp-backward-slurp-sexp) ("C-{" . sp-backward-barf-sexp) ("C-M-<right>" . sp-backward-barf-sexp) ("M-S" . sp-split-sexp) ("M-j" . sp-join-sexp) ("M-?" . sp-convolute-sexp)) (#$ . 5866))
#@78 Populates the `smartparens-mode-map' from the BINDINGS alist.
 
(fn BINDINGS)
(defalias 'sp--populate-keymap #[257 "\211\301\205@\302\303@!A#\266\211T\262A\262\202\207" [smartparens-mode-map 0 define-key read-kbd-macro] 8 (#$ . 6738)])
#@61 Initiate `smartparens-mode-map' with `sp-paredit-bindings'.
(defalias 'sp-use-paredit-bindings #[0 "\301!\207" [sp-paredit-bindings sp--populate-keymap] 2 (#$ . 6992) nil])
#@52 Alist containing the default smartparens bindings.
(defvar sp-smartparens-bindings '(("C-M-f" . sp-forward-sexp) ("C-M-b" . sp-backward-sexp) ("C-M-d" . sp-down-sexp) ("C-M-a" . sp-backward-down-sexp) ("C-S-d" . sp-beginning-of-sexp) ("C-S-a" . sp-end-of-sexp) ("C-M-e" . sp-up-sexp) ("C-M-u" . sp-backward-up-sexp) ("C-M-n" . sp-next-sexp) ("C-M-p" . sp-previous-sexp) ("C-M-k" . sp-kill-sexp) ("C-M-w" . sp-copy-sexp) ("M-<delete>" . sp-unwrap-sexp) ("M-<backspace>" . sp-backward-unwrap-sexp) ("C-<right>" . sp-forward-slurp-sexp) ("C-<left>" . sp-forward-barf-sexp) ("C-M-<left>" . sp-backward-slurp-sexp) ("C-M-<right>" . sp-backward-barf-sexp) ("M-D" . sp-splice-sexp) ("C-M-<delete>" . sp-splice-sexp-killing-forward) ("C-M-<backspace>" . sp-splice-sexp-killing-backward) ("C-S-<backspace>" . sp-splice-sexp-killing-around) ("C-]" . sp-select-next-thing-exchange) ("C-M-]" . sp-select-next-thing) ("C-M-SPC" . sp-mark-sexp) ("M-F" . sp-forward-symbol) ("M-B" . sp-backward-symbol)) (#$ . 7172))
#@65 Initiate `smartparens-mode-map' with `sp-smartparens-bindings'.
(defalias 'sp-use-smartparens-bindings #[0 "\301!\207" [sp-smartparens-bindings sp--populate-keymap] 2 (#$ . 8180) nil])
#@291 Set up the default keymap based on `sp-base-key-bindings'.
 
SYMBOL is the symbol being set, that is `sp-base-key-bindings'.
 
VALUE is the saved value (as a symbol), can be one of:
- sp
- paredit
 
This function is also used as a setter for this customize value.
 
(fn &optional SYMBOL VALUE)
(defalias 'sp--set-base-key-bindings #[512 "\203    \300\"\210\211\301\267\202\302 \207\303 \207\304\207" [set-default #s(hash-table size 2 test eq rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (sp 15 paredit 18)) sp-use-smartparens-bindings sp-use-paredit-bindings nil] 5 (#$ . 8373)])
#@236 Override the key bindings with values from `sp-override-key-bindings'.
 
SYMBOL is `sp-override-key-bindings', VALUE is the value being set.
 
This function is also used as a setter for this customize value.
 
(fn &optional SYMBOL VALUE)
(defalias 'sp--update-override-key-bindings #[512 "\203    \300\"\210\301 \210\302!\207" [set-default sp--set-base-key-bindings sp--populate-keymap] 5 (#$ . 8970)])
(byte-code "\300\301\302\303\304DD\305\306\307\310\311\312\313&    \210\300\314\302\303\315DD\316\306\317\310\320\312\313&    \207" [custom-declare-variable sp-base-key-bindings funcall function #[0 "\300\207" [nil] 1] "A default set of key bindings for commands provided by smartparens.\n\nParedit binding adds the bindings in `sp-paredit-bindings' to the\ncorresponding smartparens commands.  It does not add bindings to\nany other commands, or commands that do not have a paredit\ncounterpart.\n\nSmartparens binding adds the bindings in\n`sp-smartparens-bindings' to most common smartparens commands.\nThese are somewhat inspired by paredit, but in many cases differ.\n\nNote that neither \"paredit\" nor \"smartparens\" bindings add a\nbinding for all the provided commands." :type (radio (const :tag "Don't use any default set of bindings" nil) (const :tag "Use smartparens set of bindings" sp) (const :tag "Use paredit set of bindings" paredit)) :set sp--set-base-key-bindings :group smartparens sp-override-key-bindings #[0 "\300\207" [nil] 1] "An alist of bindings and commands that should override the base key set.\n\nIf you wish to override a binding from the base set, set the\nvalue for the binding to the `kbd' recognizable string constant\nand command to the command symbol you wish to bind there.\n\nIf you wish to disable a binding from the base set, set the value\nfor the command to nil.\n\nExamples:\n (\"C-M-f\" . sp-forward-sexp)\n (\"C-<right>\" . nil)\n\nSee `sp-base-key-bindings'." (alist :key-type string :value-type symbol) sp--update-override-key-bindings] 10)
#@49 Character used to escape quotes inside strings.
(defvar sp-escape-char nil (#$ . 10963))
(make-variable-buffer-local 'sp-escape-char)
#@35 Character used to start comments.
(defvar sp-comment-char nil (#$ . 11103))
(make-variable-buffer-local 'sp-comment-char)
#@125 List of pairs for autoinsertion or wrapping.
 
Maximum length of opening or closing pair is
`sp-max-pair-length' characters.
(defvar sp-pair-list nil (#$ . 11232))
(make-variable-buffer-local 'sp-pair-list)
#@51 List of pair definitions used for current buffer.
(defvar sp-local-pairs nil (#$ . 11444))
(make-variable-buffer-local 'sp-local-pairs)
#@47 Symbol holding the last successful operation.
(defvar sp-last-operation nil (#$ . 11586))
(make-variable-buffer-local 'sp-last-operation)
#@67 compiler-macro for inlining `sp-state-p'.
 
(fn CL-WHOLE-ARG CL-X)
(defalias 'sp-state-p--cmacro #[514 "\300\301\302\303\211\211&\207" [cl--defsubst-expand (cl-x) (cl-block sp-state-p (and (memq (type-of cl-x) cl-struct-sp-state-tags) t)) nil] 9 (#$ . 11730)])
(put 'sp-state-p 'compiler-macro 'sp-state-p--cmacro)
#@13 
 
(fn CL-X)
(defalias 'sp-state-p #[257 "\301!>\205    \302\207" [cl-struct-sp-state-tags type-of t] 3 (#$ . 12053)])
(byte-code "\300\301\302\303#\304\305\306\301#\207" [function-put sp-state-p side-effect-free error-free put sp-state cl-deftype-satisfies] 5)
#@78 compiler-macro for inlining `sp-state-delayed-hook'.
 
(fn CL-WHOLE-ARG CL-X)
(defalias 'sp-state-delayed-hook--cmacro #[514 "\300\301\302\303\211\211&\207" [cl--defsubst-expand (cl-x) (cl-block sp-state-delayed-hook (or (sp-state-p cl-x) (signal 'wrong-type-argument (list 'sp-state cl-x))) (aref cl-x 1)) nil] 9 (#$ . 12320)])
(put 'sp-state-delayed-hook 'compiler-macro 'sp-state-delayed-hook--cmacro)
#@66 Access slot "delayed-hook" of `sp-state' struct CL-X.
 
(fn CL-X)
(defalias 'sp-state-delayed-hook #[257 "\301!>\204\302\303\304D\"\210\211\305H\207" [cl-struct-sp-state-tags type-of signal wrong-type-argument sp-state 1] 5 (#$ . 12733)])
(byte-code "\300\301\302\303#\300\207" [function-put sp-state-delayed-hook side-effect-free t] 4)
#@83 compiler-macro for inlining `sp-state-delayed-insertion'.
 
(fn CL-WHOLE-ARG CL-X)
(defalias 'sp-state-delayed-insertion--cmacro #[514 "\300\301\302\303\211\211&\207" [cl--defsubst-expand (cl-x) (cl-block sp-state-delayed-insertion (or (sp-state-p cl-x) (signal 'wrong-type-argument (list 'sp-state cl-x))) (aref cl-x 2)) nil] 9 (#$ . 13080)])
(put 'sp-state-delayed-insertion 'compiler-macro 'sp-state-delayed-insertion--cmacro)
#@71 Access slot "delayed-insertion" of `sp-state' struct CL-X.
 
(fn CL-X)
(defalias 'sp-state-delayed-insertion #[257 "\301!>\204\302\303\304D\"\210\211\305H\207" [cl-struct-sp-state-tags type-of signal wrong-type-argument sp-state 2] 5 (#$ . 13518)])
(byte-code "\300\301\302\303#\300\207" [function-put sp-state-delayed-insertion side-effect-free t] 4)
#@88 compiler-macro for inlining `sp-state-last-syntax-ppss-point'.
 
(fn CL-WHOLE-ARG CL-X)
(defalias 'sp-state-last-syntax-ppss-point--cmacro #[514 "\300\301\302\303\211\211&\207" [cl--defsubst-expand (cl-x) (cl-block sp-state-last-syntax-ppss-point (or (sp-state-p cl-x) (signal 'wrong-type-argument (list 'sp-state cl-x))) (aref cl-x 3)) nil] 9 (#$ . 13880)])
(put 'sp-state-last-syntax-ppss-point 'compiler-macro 'sp-state-last-syntax-ppss-point--cmacro)
#@76 Access slot "last-syntax-ppss-point" of `sp-state' struct CL-X.
 
(fn CL-X)
(defalias 'sp-state-last-syntax-ppss-point #[257 "\301!>\204\302\303\304D\"\210\211\305H\207" [cl-struct-sp-state-tags type-of signal wrong-type-argument sp-state 3] 5 (#$ . 14343)])
(byte-code "\300\301\302\303#\300\207" [function-put sp-state-last-syntax-ppss-point side-effect-free t] 4)
#@89 compiler-macro for inlining `sp-state-last-syntax-ppss-result'.
 
(fn CL-WHOLE-ARG CL-X)
(defalias 'sp-state-last-syntax-ppss-result--cmacro #[514 "\300\301\302\303\211\211&\207" [cl--defsubst-expand (cl-x) (cl-block sp-state-last-syntax-ppss-result (or (sp-state-p cl-x) (signal 'wrong-type-argument (list 'sp-state cl-x))) (aref cl-x 4)) nil] 9 (#$ . 14720)])
(put 'sp-state-last-syntax-ppss-result 'compiler-macro 'sp-state-last-syntax-ppss-result--cmacro)
#@77 Access slot "last-syntax-ppss-result" of `sp-state' struct CL-X.
 
(fn CL-X)
(defalias 'sp-state-last-syntax-ppss-result #[257 "\301!>\204\302\303\304D\"\210\211\305H\207" [cl-struct-sp-state-tags type-of signal wrong-type-argument sp-state 4] 5 (#$ . 15188)])
(byte-code "\300\301\302\303#\300\207" [function-put sp-state-last-syntax-ppss-result side-effect-free t] 4)
#@75 compiler-macro for inlining `sp-state-pair-list'.
 
(fn CL-WHOLE-ARG CL-X)
(defalias 'sp-state-pair-list--cmacro #[514 "\300\301\302\303\211\211&\207" [cl--defsubst-expand (cl-x) (cl-block sp-state-pair-list (or (sp-state-p cl-x) (signal 'wrong-type-argument (list 'sp-state cl-x))) (aref cl-x 5)) nil] 9 (#$ . 15568)])
(put 'sp-state-pair-list 'compiler-macro 'sp-state-pair-list--cmacro)
#@63 Access slot "pair-list" of `sp-state' struct CL-X.
 
(fn CL-X)
(defalias 'sp-state-pair-list #[257 "\301!>\204\302\303\304D\"\210\211\305H\207" [cl-struct-sp-state-tags type-of signal wrong-type-argument sp-state 5] 5 (#$ . 15966)])
(byte-code "\300\301\302\303#\300\207" [function-put sp-state-pair-list side-effect-free t] 4)
#@77 compiler-macro for inlining `sp-state-local-pairs'.
 
(fn CL-WHOLE-ARG CL-X)
(defalias 'sp-state-local-pairs--cmacro #[514 "\300\301\302\303\211\211&\207" [cl--defsubst-expand (cl-x) (cl-block sp-state-local-pairs (or (sp-state-p cl-x) (signal 'wrong-type-argument (list 'sp-state cl-x))) (aref cl-x 6)) nil] 9 (#$ . 16304)])
(put 'sp-state-local-pairs 'compiler-macro 'sp-state-local-pairs--cmacro)
#@65 Access slot "local-pairs" of `sp-state' struct CL-X.
 
(fn CL-X)
(defalias 'sp-state-local-pairs #[257 "\301!>\204\302\303\304D\"\210\211\305H\207" [cl-struct-sp-state-tags type-of signal wrong-type-argument sp-state 6] 5 (#$ . 16712)])
(byte-code "\300\301\302\303#\304\305\306\"\207" [function-put sp-state-local-pairs side-effect-free t defalias copy-sp-state copy-sequence] 4)
#@176 compiler-macro for inlining `make-sp-state'.
 
(fn CL-WHOLE &cl-quote &key DELAYED-HOOK DELAYED-INSERTION LAST-SYNTAX-PPSS-POINT LAST-SYNTAX-PPSS-RESULT PAIR-LIST LOCAL-PAIRS)
(defalias 'make-sp-state--cmacro #[385 "\300\301\"A@\300\302\"A@\300\303\"A@\300\304\"A@\300\305\"A@\300\306\"A@\211\203R\211@\307>\203:\211AA\262\202'\310>A@\203I\311\262\202'\312\313@\"\210\202'\210\314\315\316\311 \311      & \207" [plist-member :delayed-hook :delayed-insertion :last-syntax-ppss-point :last-syntax-ppss-result :pair-list :local-pairs (:delayed-hook :delayed-insertion :last-syntax-ppss-point :last-syntax-ppss-result :pair-list :local-pairs :allow-other-keys) :allow-other-keys nil error "Keyword argument %s not one of (:delayed-hook :delayed-insertion :last-syntax-ppss-point :last-syntax-ppss-result :pair-list :local-pairs)" cl--defsubst-expand (delayed-hook delayed-insertion last-syntax-ppss-point last-syntax-ppss-result pair-list local-pairs) (cl-block make-sp-state (record 'sp-state delayed-hook delayed-insertion last-syntax-ppss-point last-syntax-ppss-result pair-list local-pairs))] 20 (#$ . 17104)])
(put 'make-sp-state 'compiler-macro 'make-sp-state--cmacro)
#@156 Constructor for objects of type `sp-state'.
 
(fn &key DELAYED-HOOK DELAYED-INSERTION LAST-SYNTAX-PPSS-POINT LAST-SYNTAX-PPSS-RESULT PAIR-LIST LOCAL-PAIRS)
(defalias 'make-sp-state #[128 "\300\301\"A@\300\302\"A@\300\303\"A@\300\304\"A@\300\305\"A@\300\306\"A@\211\203R\211@\307>\203:\211AA\262\202'\310>A@\203I\311\262\202'\312\313@\"\210\202'\210\314\315&\207" [plist-member :delayed-hook :delayed-insertion :last-syntax-ppss-point :last-syntax-ppss-result :pair-list :local-pairs (:delayed-hook :delayed-insertion :last-syntax-ppss-point :last-syntax-ppss-result :pair-list :local-pairs :allow-other-keys) :allow-other-keys nil error "Keyword argument %s not one of (:delayed-hook :delayed-insertion :last-syntax-ppss-point :last-syntax-ppss-result :pair-list :local-pairs)" record sp-state] 15 (#$ . 18308)])
(byte-code "\300\301\302\303#\304\305\306\307\310\311\312\313\305\303&    \207" [function-put make-sp-state side-effect-free t cl-struct-define sp-state "Smartparens state for the current buffer." cl-structure-object record nil ((cl-tag-slot) (delayed-hook) (delayed-insertion) (last-syntax-ppss-point) (last-syntax-ppss-result) (pair-list) (local-pairs)) cl-struct-sp-state-tags] 11)
#@43 Smartparens state for the current buffer.
(defvar sp-state (byte-code "\300\301\302\211\211\211\211\211&\207" [record sp-state nil] 8) (#$ . 19541))
(make-variable-buffer-local 'sp-state)
#@154 Location of point before last command.
 
This is only updated when some pair-overlay is active.  Do not
rely on the value of this variable anywhere else!
(defvar sp-previous-point -1 (#$ . 19737))
(make-variable-buffer-local 'sp-previous-point)
#@126 Save the value of point before attemt to wrap a region.
 
Used for restoring the original state if the wrapping is
cancelled.
(defvar sp-wrap-point nil (#$ . 19988))
(make-variable-buffer-local 'sp-wrap-point)
#@125 Save the value of mark before attemt to wrap a region.
 
Used for restoring the original state if the wrapping is
cancelled.
(defvar sp-wrap-mark nil (#$ . 20204))
(make-variable-buffer-local 'sp-wrap-mark)
#@155 Characters typed during the wrapping selection.
 
If wrapping is cancelled, these characters are re-inserted to the
location of point before the wrapping.
(defvar sp-last-inserted-characters "" (#$ . 20417))
(make-variable-buffer-local 'sp-last-inserted-characters)
#@21 Last inserted pair.
(defvar sp-last-inserted-pair nil (#$ . 20688))
(make-variable-buffer-local 'sp-last-inserted-pair)
#@196 The pair whose insertion is being delayed.
 
The insertion of this pair is delayed to be carried out in
`sp--post-command-hook-handler'.  The format is (opening delim
.  beg of the opening delim)
(defvar sp-delayed-pair nil (#$ . 20815))
(make-variable-buffer-local 'sp-delayed-pair)
#@97 Information about the last wrapped region.
The format is the same as returned by `sp-get-sexp'.
(defvar sp-last-wrapped-region nil (#$ . 21104))
(make-variable-buffer-local 'sp-last-wrapped-region)
#@108 Non-nil if point is inside a string.
 
Used to remember the state from before `self-insert-command' is
run.
(defvar sp-point-inside-string nil (#$ . 21309))
#@59 Non-nil if buffer was modified before `pre-command-hook'.
(defvar sp-buffer-modified-p nil (#$ . 21471))
#@58 Position of `point' before `this-command' gets executed.
(defvar sp-pre-command-point nil (#$ . 21582))
#@138 Maximum length of an opening or closing delimiter.
 
Only the pairs defined by `sp-pair' are considered.  Tag pairs
can be of any length.
(defconst sp-max-pair-length 10 (#$ . 21693))
#@273 Maximum length of a pair prefix.
 
Because prefixes for pairs can be specified using regular
expressions, they can potentially be of arbitrary length.  This
settings solves the problem where the parser would decide to
backtrack the entire buffer which would lock up Emacs.
(defconst sp-max-prefix-length 100 (#$ . 21883))
#@106 List of pair definitions.
 
Maximum length of opening or closing pair is
`sp-max-pair-length' characters.
(defvar sp-pairs '((t (:open "\\\\(" :close "\\\\)" :actions (insert wrap autoskip navigate)) (:open "\\{" :close "\\}" :actions (insert wrap autoskip navigate)) (:open "\\(" :close "\\)" :actions (insert wrap autoskip navigate)) (:open "\\\"" :close "\\\"" :actions (insert wrap autoskip navigate)) (:open "\"" :close "\"" :actions (insert wrap autoskip navigate escape) :unless (sp-in-string-quotes-p) :post-handlers (sp-escape-wrapped-region sp-escape-quotes-after-insert)) (:open "'" :close "'" :actions (insert wrap autoskip navigate escape) :unless (sp-in-string-quotes-p sp-point-after-word-p) :post-handlers (sp-escape-wrapped-region sp-escape-quotes-after-insert)) (:open "(" :close ")" :actions (insert wrap autoskip navigate)) (:open "[" :close "]" :actions (insert wrap autoskip navigate)) (:open "{" :close "}" :actions (insert wrap autoskip navigate)) (:open "`" :close "`" :actions (insert wrap autoskip navigate)))) (#$ . 22211))
#@68 List of tag definitions.  See `sp-local-tag' for more information.
(defvar sp-tags nil (#$ . 23268))
#@64 If non-nil, only consider tags while searching for next thing.
(defvar sp-prefix-tag-object nil (#$ . 23375))
#@139 If non-nil, only consider pairs while searching for next thing.
 
Pairs are defined as expressions delimited by pairs from
`sp-pair-list'.
(defvar sp-prefix-pair-object nil (#$ . 23492))
#@140 If non-nil, only consider symbols while searching for next thing.
 
Symbol is defined as a chunk of text recognized by
`sp-forward-symbol'.
(defvar sp-prefix-symbol-object nil (#$ . 23685))
(byte-code "\300\301\302\303#\210\304\211\203(\211@\301N\203!\302N\204!\305\302\301N#\210A\266\202\202\210\306\301\302\307#\210\310\302\311\312\313DD\314\315\316\317\320&\210\310\321\311\312\322DD\323\315\324\317\320&\210\310\325\311\312\326DD\327\315\330\317\320&\210\310\331\311\312\332DD\333\315\334\317\320&\207" [defvaralias sp--lisp-modes sp-lisp-modes nil (saved-value saved-variable-comment) put make-obsolete-variable "2015-11-08" custom-declare-variable funcall function #[0 "\300\207" [(cider-repl-mode clojure-mode clojurec-mode clojurescript-mode clojurex-mode common-lisp-mode emacs-lisp-mode eshell-mode geiser-repl-mode gerbil-mode inf-clojure-mode inferior-emacs-lisp-mode inferior-lisp-mode inferior-scheme-mode lisp-interaction-mode lisp-mode monroe-mode racket-mode racket-repl-mode scheme-interaction-mode scheme-mode slime-repl-mode stumpwm-mode)] 1] "List of Lisp-related modes." :type (repeat symbol) :group smartparens sp-clojure-modes #[0 "\300\207" [(cider-repl-mode clojure-mode clojurec-mode clojurescript-mode clojurex-mode inf-clojure-mode)] 1] "List of Clojure-related modes." (repeat symbol) sp-no-reindent-after-kill-modes #[0 "\300\207" [(python-mode coffee-mode asm-mode makefile-gmake-mode haml-mode)] 1] "List of modes that should not reindent after kill." (repeat symbol) sp-no-reindent-after-kill-indent-line-functions #[0 "\300\207" [(insert-tab)] 1] "List of `indent-line-function's that should not reindent after kill." (repeat symbol)] 8)
#@21 List of HTML modes.
(defvar sp--html-modes '(sgml-mode html-mode rhtml-mode nxhtml-mode nxml-mode web-mode jinja2-mode html-erb-mode js-jsx-mode js2-jsx-mode rjsx-mode) (#$ . 25377))
#@305 List of predefined messages to be displayed by `sp-message'.
 
Each element is a list consisting of a keyword and one or more
strings, which are chosen based on the `sp-message-width'
variable.  If the latter is t, the first string is chosen as
default, which should be the most verbose option available.
(defvar sp-message-alist '((:unmatched-expression "Search failed: there is an unmatched expression somewhere or we are at the beginning/end of file" "Unmatched expression") (:unbalanced-region "Can not kill the region: the buffer would end up in an unbalanced state after deleting the active region" "Killing the region would make the buffer unbalanced" "Unbalanced region") (:delimiter-in-string "Ignored: opening or closing pair is inside a string or comment and matching pair is outside (or vice versa)") (:no-matching-tag "Search failed: no matching tag found" "No matching tag") (:invalid-context-prev "Invalid context: previous h-sexp ends after the next one" "Invalid context") (:invalid-context-cur "Invalid context: current h-sexp starts after the next one" "Invalid context") (:no-structure-found "Previous sexp starts after current h-sexp or no structure was found" "No valid structure found") (:invalid-structure "Ignored: this operation would result in invalid structure" "Ignored because of invalid structure") (:cant-slurp "Ignored: we can not slurp without breaking strictly balanced expression" "Can not slurp without breaking balance") (:cant-slurp-context "Ignored: we can not slurp into different context (comment -> code)" "Can not slurp into different context") (:cant-insert-closing-delimiter "We can not insert unbalanced closing delimiter in strict mode" "Can not insert unbalanced delimiter") (:blank-sexp "Point is in blank sexp, nothing to barf" "Point is in blank sexp") (:point-not-deep-enough "Point has to be at least two levels deep to swap the enclosing delimiters" "Point has to be at least two levels deep" "Point not deep enough") (:different-type "The expressions to be joined are of different type" "Expressions are of different type")) (#$ . 25567))
(custom-declare-group 'smartparens nil "Smartparens minor mode." :group 'editing :prefix "sp-")
#@101 Non-nil if Smartparens mode is enabled.
Use the command `smartparens-mode' to change this variable.
(defvar smartparens-mode nil (#$ . 27764))
(make-variable-buffer-local 'smartparens-mode)
#@204 Toggle smartparens mode.
 
You can enable pre-set bindings by customizing
`sp-base-key-bindings' variable.  The current content of
`smartparens-mode-map' is:
 
 \{smartparens-mode-map}
 
(fn &optional ARG)
(defalias 'smartparens-mode #[256 "\301 \302=\203 ?\202\303!\304V\211\203(\305 \210\306\307\310\311\312$\210\313\314!\210\2022\315\307\310\312#\210\313\316!\210\313\317\203<\320\202=\321\"\210\322\323!\203a\301 \203Q\211\301 \232\203a\324\325\326\203\\\327\202]\330#\266\210\331 \210\207" [smartparens-mode current-message toggle prefix-numeric-value 0 sp--init add-hook self-insert-uses-region-functions sp-wrap--can-wrap-p nil local run-hooks smartparens-enabled-hook remove-hook smartparens-disabled-hook smartparens-mode-hook smartparens-mode-on-hook smartparens-mode-off-hook called-interactively-p any " in current buffer" message "Smartparens mode %sabled%s" "en" "dis" force-mode-line-update] 8 (#$ . 27961) (byte-code "\206\301C\207" [current-prefix-arg toggle] 1)])
(defvar smartparens-mode-hook nil)
(byte-code "\301\302N\204\f\303\301\302\304#\210\305\306\307\310\211%\207" [smartparens-mode-map smartparens-mode-hook variable-documentation put "Hook run after entering or leaving `smartparens-mode'.\nNo problems result if this variable is not bound.\n`add-hook' automatically binds it.  (This is true for all hook variables.)" add-minor-mode smartparens-mode (" SP" (:eval (if smartparens-strict-mode "/s" ""))) nil] 6)
#@44 Keymap used for `smartparens-strict-mode'.
(defvar smartparens-strict-mode-map (byte-code "\300 \301\302\303#\210\301\304\303#\210\301\305\306#\210\301\307\306#\210\301\310\306#\210\301\311\312#\210\301\313\314#\210\301\315\316#\210\301\317\320#\210\301\321\322#\210\301\323\324#\210\211\207" [make-sparse-keymap define-key [remap delete-char] sp-delete-char [remap delete-forward-char] [remap backward-delete-char-untabify] sp-backward-delete-char [remap backward-delete-char] [remap delete-backward-char] [remap kill-word] sp-kill-word [remap kill-line] sp-kill-hybrid-sexp [remap backward-kill-word] sp-backward-kill-word [remap kill-region] sp-kill-region [remap delete-region] sp-delete-region [remap kill-whole-line] sp-kill-whole-line] 5) (#$ . 29430))
#@115 Non-nil if Smartparens-Strict mode is enabled.
Use the command `smartparens-strict-mode' to change this variable.
(defvar smartparens-strict-mode nil (#$ . 30208))
(make-variable-buffer-local 'smartparens-strict-mode)
#@602 Toggle the strict smartparens mode.
 
When strict mode is active, `delete-char', `kill-word' and their
backward variants will skip over the pair delimiters in order to
keep the structure always valid (the same way as `paredit-mode'
does).  This is accomplished by remapping them to
`sp-delete-char' and `sp-kill-word'.  There is also function
`sp-kill-symbol' that deletes symbols instead of words, otherwise
working exactly the same (it is not bound to any key by default).
 
When strict mode is active, this is indicated with "/s"
after the smartparens indicator in the mode list.
 
(fn &optional ARG)
(defalias 'smartparens-strict-mode #[256 "\305 \306=\203 ?\202\307!\310V\211\203D    \204\301\311!\210\312\313\n\"\204,\300 B\nB\314\315\316\317#\210\314\320\316\317#\210\321\322\323\324\325$\210\326\202s\327\330\n\"\314\315\316\331#\210\314\320\316\331#\210\332\322\323\325#\210\333\334\304!\335\"@\333\334\304!\336\"@\337\206o!\266\340\341\203}\342\202~\343\"\210\344\345!\203\242\305 \203\222\211\305 \232\203\242\346\347\350\203\235\351\202\236\352#\266\210\353 \210\207" [smartparens-strict-mode smartparens-mode minor-mode-overriding-map-alist smartparens-strict-mode-map sp-autoskip-closing-pair current-message toggle prefix-numeric-value 0 1 -find-indices #[257 "\211@\300=\207" [smartparens-strict-mode] 3 "\n\n(fn IT)"] put sp-backward-delete-char delete-selection sp--delete-selection-supersede-p sp-delete-char add-hook self-insert-uses-region-functions sp--self-insert-uses-region-strict-p nil local always -remove #[257 "\211@\300=\207" [smartparens-strict-mode] 3 "\n\n(fn IT)"] supersede remove-hook plist-get symbol-plist standard-value saved-value eval run-hooks smartparens-strict-mode-hook smartparens-strict-mode-on-hook smartparens-strict-mode-off-hook called-interactively-p any " in current buffer" message "Smartparens-Strict mode %sabled%s" "en" "dis" force-mode-line-update] 8 (#$ . 30433) (byte-code "\206\301C\207" [current-prefix-arg toggle] 1)])
(defvar smartparens-strict-mode-hook nil)
(byte-code "\301\302N\204\f\303\301\302\304#\210\305\306\307\310\300!\205\307\211%\207" [smartparens-strict-mode-map smartparens-strict-mode-hook variable-documentation put "Hook run after entering or leaving `smartparens-strict-mode'.\nNo problems result if this variable is not bound.\n`add-hook' automatically binds it.  (This is true for all hook variables.)" add-minor-mode smartparens-strict-mode nil boundp] 6)
(defvar smartparens-strict-mode-major-mode nil)
(byte-code "\300\301!\210\302\303\304\305\306DD\307\310\311\312\313\314\315\316\317& \207" [make-variable-buffer-local smartparens-strict-mode-major-mode custom-declare-variable smartparens-global-strict-mode funcall function #[0 "\300\207" [nil] 1] "Non-nil if Smartparens-Global-Strict mode is enabled.\nSee the `smartparens-global-strict-mode' command\nfor a description of this minor mode.\nSetting this variable directly does not take effect;\neither customize it (see the info node `Easy Customization')\nor call the function `smartparens-global-strict-mode'." :set custom-set-minor-mode :initialize custom-initialize-default :group smartparens :type boolean] 12)
#@413 Toggle Smartparens-Strict mode in all buffers.
With prefix ARG, enable Smartparens-Global-Strict mode if ARG is positive;
otherwise, disable it.  If called from Lisp, enable the mode if
ARG is omitted or nil.
 
Smartparens-Strict mode is enabled in all buffers where
`turn-on-smartparens-strict-mode' would do it.
See `smartparens-strict-mode' for more information on Smartparens-Strict mode.
 
(fn &optional ARG)
(defalias 'smartparens-global-strict-mode #[256 "\302 \303\300\304=\203\305\300!?\202\306!\307V\"\210\203.\310\311\312\"\210\310\313\314\"\210\310\315\316\"\210\202=\317\311\312\"\210\317\313\314\"\210\317\315\316\"\210\320 \211\203c\211@r\211q\210\203S\321 \210\202[    \203[\301\322!\210)A\266\202\202?\210\323\324\305\300!\203p\325\202q\326\"\210\327\330!\203\233\331\300!\210\302 \203\211\211\302 \232\203\233\332\333\334\305\300!\203\226\335\202\227\336#\266\210\337 \210\305\300!\207" [smartparens-global-strict-mode smartparens-strict-mode current-message set-default toggle default-value prefix-numeric-value 0 add-hook after-change-major-mode-hook smartparens-global-strict-mode-enable-in-buffers find-file-hook smartparens-global-strict-mode-check-buffers change-major-mode-hook smartparens-global-strict-mode-cmhh remove-hook buffer-list turn-on-smartparens-strict-mode -1 run-hooks smartparens-global-strict-mode-hook smartparens-global-strict-mode-on-hook smartparens-global-strict-mode-off-hook called-interactively-p any customize-mark-as-set "" message "Smartparens-Global-Strict mode %sabled%s" "en" "dis" force-mode-line-update] 7 (#$ . 33633) (byte-code "\206\301C\207" [current-prefix-arg toggle] 1)])
(defvar smartparens-global-strict-mode-hook nil)
(byte-code "\301\302N\204\f\303\301\302\304#\210\305\306\307\310\300!\205\307\211%\207" [smartparens-global-strict-mode-map smartparens-global-strict-mode-hook variable-documentation put "Hook run after entering or leaving `smartparens-global-strict-mode'.\nNo problems result if this variable is not bound.\n`add-hook' automatically binds it.  (This is true for all hook variables.)" add-minor-mode smartparens-global-strict-mode nil boundp] 6)
(defvar smartparens-strict-mode-set-explicitly nil nil)
(make-variable-buffer-local 'smartparens-strict-mode-set-explicitly)
(defalias 'smartparens-strict-mode-set-explicitly #[0 "\301\211\207" [smartparens-strict-mode-set-explicitly t] 2])
(byte-code "\300\301\302\303#\210\304\305\301\"\207" [put smartparens-strict-mode-set-explicitly definition-name smartparens-global-strict-mode add-hook smartparens-strict-mode-hook] 4)
(defvar smartparens-global-strict-mode-buffers nil)
(defalias 'smartparens-global-strict-mode-enable-in-buffers #[0 "\211\2056\211@\305!\203/r\211q\210    \204,\n =\204,\f\203)\304\306!\210\307 \210\202,\307 \210 )A\266\202\202\207" [smartparens-global-strict-mode-buffers smartparens-strict-mode-set-explicitly smartparens-strict-mode-major-mode major-mode smartparens-strict-mode buffer-live-p -1 turn-on-smartparens-strict-mode] 4])
(put 'smartparens-global-strict-mode-enable-in-buffers 'definition-name 'smartparens-global-strict-mode)
(defalias 'smartparens-global-strict-mode-check-buffers #[0 "\301 \210\302\303\304\305\"\207" [smartparens-global-strict-mode-buffers smartparens-global-strict-mode-enable-in-buffers nil remove-hook post-command-hook smartparens-global-strict-mode-check-buffers] 3])
(put 'smartparens-global-strict-mode-check-buffers 'definition-name 'smartparens-global-strict-mode)
(defalias 'smartparens-global-strict-mode-cmhh #[0 "\300\301p\"\210\302\303\304\"\207" [add-to-list smartparens-global-strict-mode-buffers add-hook post-command-hook smartparens-global-strict-mode-check-buffers] 3])
(byte-code "\300\301\302\303#\210\304\305\306\307\310DD\311\312\313\314\315&\207" [put smartparens-global-strict-mode-cmhh definition-name smartparens-global-strict-mode custom-declare-variable sp-ignore-modes-list funcall function #[0 "\300\207" [(minibuffer-inactive-mode)] 1] "Modes where smartparens mode is inactive if allowed globally." :type (repeat symbol) :group smartparens] 8)
#@36 Turn on `smartparens-strict-mode'.
(defalias 'turn-on-smartparens-strict-mode #[0 "    \235\206\302\303!?\205\304N\305=?\205\306\307!\207" [major-mode sp-ignore-modes-list derived-mode-p comint-mode mode-class special smartparens-strict-mode 1] 2 (#$ . 37749) nil])
#@37 Turn off `smartparens-strict-mode'.
(defalias 'turn-off-smartparens-strict-mode #[0 "\300\301!\207" [smartparens-strict-mode -1] 2 (#$ . 38026) nil])
#@151 Initialize the buffer local smartparens state.
 
 This includes pair bindings and other buffer local variables
that depend on the active `major-mode'.
(defalias 'sp--init #[0 "\303\300\304\211\211\211\211\211&\305 \210\306\307\211W\205=\211    \204&\211z\310U\203&\311!\n\2045\211z\312U\2035\311!\210\211T\262\202\207" [sp-state sp-escape-char sp-comment-char record nil sp--update-local-pairs 256 0 92 string 60] 8 (#$ . 38183)])
#@74 Initialize the buffer if it is not already initialized.
 
See `sp--init'.
(defalias 'sp--maybe-init #[0 "?\205\301 \207" [sp-pair-list sp--init] 1 (#$ . 38631)])
#@47 Remove OPEN from `sp-local-pairs'.
 
(fn OPEN)
(defalias 'sp--remove-local-pair #[257 "\301\302\203#@\303\304\"\232\204\211B\262\210\211T\262A\262\202\266\211\237\262\211\207" [sp-local-pairs nil 0 plist-get :open] 8 (#$ . 38801)])
#@71 Update `sp-pair-list' according to current value of `sp-local-pairs'.
(defalias 'sp--update-sp-pair-list #[0 "\302\303\304\305\"\"\211\207" [sp-local-pairs sp-pair-list -sort #[514 "@G@GV\207" [] 4 "\n\n(fn X Y)"] mapcar #[257 "\300\301\"\300\302\"B\207" [plist-get :open :close] 5 "\n\n(fn IT)"]] 5 (#$ . 39056)])
#@174 Update local pairs after change or at mode initialization.
 
This commands load all the parent major mode definitions and
merges them into current buffer's `sp-local-pairs'.
(defalias 'sp--update-local-pairs #[0 "\301\302C\"\211\303\205@\304!\266\211T\262A\262\202\266\202\207" [major-mode -fix #[257 "\211@\300N\211\203\211B\202\207" [derived-mode-parent] 4 "\n\n(fn X)"] 0 sp-update-local-pairs] 6 (#$ . 39384)])
#@404 Update `sp-local-pairs' with CONFIGURATION.
 
The pairs are only updated in current buffer not in all buffers
with the same major mode!  If you want to update all buffers of
the specific major-modes use `sp-local-pair'.
 
CONFIGURATION can be a symbol to be looked up in `sp-pairs' or a
property list corresponding to the arguments of `sp-local-pair'
or a list of such property lists.
 
(fn CONFIGURATION)
(defalias 'sp-update-local-pairs #[257 "\2119\203\305\236A!\202\306\307\"\203\305C!\202\305!\310    \311\203A@\312\313\"\2035\211B\262\210\211T\262A\262\202#\266\211\237\262\314 \210\315\n! >\204Z\316\317\302\nD\"\210\n\211\320    I\266\315\n! >\204p\316\317\302\nD\"\210\n\211\321\fI\207" [sp-pairs sp-local-pairs sp-state cl-struct-sp-state-tags sp-pair-list sp--merge-pair-configurations plist-member :open nil 0 plist-get :actions sp--update-sp-pair-list type-of signal wrong-type-argument 6 5] 8 (#$ . 39823)])
#@86 Execute BODY in every existing buffer using `major-mode' MODE.
 
(fn MODE &rest BODY)
(defalias 'sp-with-buffers-using-mode '(macro . #[385 "\300\301\302\303\304\305DBBEE\207" [--each (buffer-list) with-current-buffer it when derived-mode-p] 9 (#$ . 40773)]))
(byte-code "\300\301\302\303#\300\207" [function-put sp-with-buffers-using-mode lisp-indent-function 1] 4)
#@203 Run `sp--update-local-pairs' in all buffers.
 
This is necessary to update all the buffer-local definitions.  If
MODES is non-nil, only update buffers with `major-mode' equal to
MODES.
 
(fn &rest MODES)
(defalias 'sp--update-local-pairs-everywhere #[128 "\301!\262\302 \303\205]@r\211q\210\203P\203M\304\305\306\303\203D\203D@\2033\305\262\2028\307!\262\210\211T\262A\262\202\266\211\262!\203P\310 \210)\210\211T\262A\262\202\207" [smartparens-mode -flatten buffer-list 0 ---truthy\? nil t derived-mode-p sp--update-local-pairs] 12 (#$ . 41150)])
(byte-code "\300\301\302\303\304DD\305\306\307\310\311&\210\300\312\302\303\313DD\314\306\307\310\311&\207" [custom-declare-variable smartparens-enabled-hook funcall function #[0 "\300\207" [nil] 1] "Called after `smartparens-mode' is turned on." :type hook :group smartparens smartparens-disabled-hook #[0 "\300\207" [nil] 1] "Called after `smartparens-mode' is turned off."] 8)
(defvar smartparens-mode-major-mode nil)
(byte-code "\300\301!\210\302\303\304\305\306DD\307\310\311\312\313\314\315\316\317& \207" [make-variable-buffer-local smartparens-mode-major-mode custom-declare-variable smartparens-global-mode funcall function #[0 "\300\207" [nil] 1] "Non-nil if Smartparens-Global mode is enabled.\nSee the `smartparens-global-mode' command\nfor a description of this minor mode.\nSetting this variable directly does not take effect;\neither customize it (see the info node `Easy Customization')\nor call the function `smartparens-global-mode'." :set custom-set-minor-mode :initialize custom-initialize-default :group smartparens :type boolean] 12)
#@371 Toggle Smartparens mode in all buffers.
With prefix ARG, enable Smartparens-Global mode if ARG is positive;
otherwise, disable it.  If called from Lisp, enable the mode if
ARG is omitted or nil.
 
Smartparens mode is enabled in all buffers where
`turn-on-smartparens-mode' would do it.
See `smartparens-mode' for more information on Smartparens mode.
 
(fn &optional ARG)
(defalias 'smartparens-global-mode #[256 "\302 \303\300\304=\203\305\300!?\202\306!\307V\"\210\203.\310\311\312\"\210\310\313\314\"\210\310\315\316\"\210\202=\317\311\312\"\210\317\313\314\"\210\317\315\316\"\210\320 \211\203c\211@r\211q\210\203S\321 \210\202[    \203[\301\322!\210)A\266\202\202?\210\323\324\305\300!\203p\325\202q\326\"\210\327\330!\203\233\331\300!\210\302 \203\211\211\302 \232\203\233\332\333\334\305\300!\203\226\335\202\227\336#\266\210\337 \210\305\300!\207" [smartparens-global-mode smartparens-mode current-message set-default toggle default-value prefix-numeric-value 0 add-hook after-change-major-mode-hook smartparens-global-mode-enable-in-buffers find-file-hook smartparens-global-mode-check-buffers change-major-mode-hook smartparens-global-mode-cmhh remove-hook buffer-list turn-on-smartparens-mode -1 run-hooks smartparens-global-mode-hook smartparens-global-mode-on-hook smartparens-global-mode-off-hook called-interactively-p any customize-mark-as-set "" message "Smartparens-Global mode %sabled%s" "en" "dis" force-mode-line-update] 7 (#$ . 42795) (byte-code "\206\301C\207" [current-prefix-arg toggle] 1)])
(defvar smartparens-global-mode-hook nil)
(byte-code "\301\302N\204\f\303\301\302\304#\210\305\306\307\310\300!\205\307\211%\207" [smartparens-global-mode-map smartparens-global-mode-hook variable-documentation put "Hook run after entering or leaving `smartparens-global-mode'.\nNo problems result if this variable is not bound.\n`add-hook' automatically binds it.  (This is true for all hook variables.)" add-minor-mode smartparens-global-mode nil boundp] 6)
(defvar smartparens-mode-set-explicitly nil nil)
(make-variable-buffer-local 'smartparens-mode-set-explicitly)
(defalias 'smartparens-mode-set-explicitly #[0 "\301\211\207" [smartparens-mode-set-explicitly t] 2])
(byte-code "\300\301\302\303#\210\304\305\301\"\207" [put smartparens-mode-set-explicitly definition-name smartparens-global-mode add-hook smartparens-mode-hook] 4)
(defvar smartparens-global-mode-buffers nil)
(defalias 'smartparens-global-mode-enable-in-buffers #[0 "\211\2056\211@\305!\203/r\211q\210    \204,\n =\204,\f\203)\304\306!\210\307 \210\202,\307 \210 )A\266\202\202\207" [smartparens-global-mode-buffers smartparens-mode-set-explicitly smartparens-mode-major-mode major-mode smartparens-mode buffer-live-p -1 turn-on-smartparens-mode] 4])
(put 'smartparens-global-mode-enable-in-buffers 'definition-name 'smartparens-global-mode)
(defalias 'smartparens-global-mode-check-buffers #[0 "\301 \210\302\303\304\305\"\207" [smartparens-global-mode-buffers smartparens-global-mode-enable-in-buffers nil remove-hook post-command-hook smartparens-global-mode-check-buffers] 3])
(put 'smartparens-global-mode-check-buffers 'definition-name 'smartparens-global-mode)
(defalias 'smartparens-global-mode-cmhh #[0 "\300\301p\"\210\302\303\304\"\207" [add-to-list smartparens-global-mode-buffers add-hook post-command-hook smartparens-global-mode-check-buffers] 3])
(put 'smartparens-global-mode-cmhh 'definition-name 'smartparens-global-mode)
#@408 Turn on `smartparens-mode'.
 
This function is used to turn on `smartparens-global-mode'.
 
By default `smartparens-global-mode' ignores buffers with
`mode-class' set to special, but only if they are also not comint
buffers.
 
Additionally, buffers on `sp-ignore-modes-list' are ignored.
 
You can still turn on smartparens in these mode manually (or
in mode's startup-hook etc.) by calling `smartparens-mode'.
(defalias 'turn-on-smartparens-mode #[0 "    \235\206\302\303!?\205\304N\305=?\205\306\307!\207" [major-mode sp-ignore-modes-list derived-mode-p comint-mode mode-class special smartparens-mode t] 2 (#$ . 46272) nil])
#@30 Turn off `smartparens-mode'.
(defalias 'turn-off-smartparens-mode #[0 "\300\301!\207" [smartparens-mode -1] 2 (#$ . 46907) nil])
(byte-code "\300\301\302\303\304DD\305\306\307\310\311&\210\300\312\302\303\313DD\314\306\307\310\311&\210\315\312\316\317#\210\300\320\302\303\321DD\322\306\323\310\311&\210\324\320!\210\300\325\302\303\326DD\327\306\307\310\311&\210\324\325!\210\300\330\302\303\331DD\332\306\307\310\311&\210\300\333\302\303\334DD\335\306\307\310\311&\210\300\336\302\303\337DD\340\306\307\310\311&\210\300\341\302\303\342DD\343\306\307\310\311&\210\300\344\302\303\345DD\346\306\307\310\311&\210\300\347\302\303\350DD\351\306\352\310\311&\210\300\353\302\303\354DD\355\306\307\310\311&\210\300\356\302\303\357DD\360\306\307\310\311&\210\300\361\302\303\362DD\363\306\307\310\311&\210\300\364\302\303\365DD\366\306\367\310\311&\210\300\370\302\303\371DD\372\306\373\310\311&\210\300\374\302\303\375DD\376\306\307\310\311&\210\300\377\302\303\201@DD\201A\306\307\310\311&\210\300\201B\302\303\201CDD\201D\306\307\310\311&\210\300\201E\302\303\201FDD\201G\306\307\310\311&\210\300\201H\302\303\201IDD\201J\306\201K\310\311&\210\300\201L\302\303\201MDD\201N\306\201O\310\311&\210\300\201P\302\303\201QDD\201R\306\307\310\311&\210\300\201S\302\303\201TDD\201U\306\307\310\311&\210\300\201V\302\303\201WDD\201X\306\201Y\310\311&\210\300\201Z\302\303\201[DD\201\\\306\201]\310\311&\210\300\201^\302\303\201_DD\201`\306\307\310\311&\210\300\201a\302\303\201bDD\201c\306\307\310\311&\210\300\201d\302\303\201eDD\201f\306\307\310\311&\210\300\201g\302\303\201hDD\201i\306\201j\310\311&\210\300\201k\302\303\201lDD\201m\306\201n\310\311&\210\300\201o\302\303\201pDD\201q\306\307\310\311&\210\300\201r\302\303\201sDD\201t\306\201u\310\311&\210\300\201v\302\303\201wDD\201x\306\201y\310\311&\210\300\201z\302\303\201{DD\201|\306\201}\310\311&\210\300\201~\302\303\201DD\201\200\306\307\310\311&\210\300\201\201\302\303\201\202DD\201\203\306\307\310\311&\210\300\201\204\302\303\201\205DD\201\206\306\307\310\311&\210\300\201\207\302\303\201\210DD\201\211\306\307\310\311&\210\300\201\212\302\303\201\213DD\201\214\306\201\215\310\311&\210\300\201\216\302\303\201\217DD\201\220\306\307\310\311&\207" [custom-declare-variable sp-autoinsert-pair funcall function #[0 "\300\207" [t] 1] "If non-nil, autoinsert pairs.  See `sp-insert-pair'." :type boolean :group smartparens sp-autoinsert-quote-if-followed-by-closing-pair #[0 "\300\207" [nil] 1] "If non-nil autoinsert quotes when the point is followed by closing delimiter.\n\nThis option only changes behaviour of the insertion process if\npoint is inside a string.  In other words, if string is not\nclosed and next character is a closing pair.\n\nFor example, in a situation like this:\n\n  [\"some text|]\n\nafter pressing \", one would probably want to insert the closing\nquote, not a nested pair (\\\"\\\"), to close the string literal\nin the array.  To enable such behaviour, set this variable to\nnil.\n\nNote: the values of this varible seem to be backward, i.e. it is\n\"enabled\" when the value is nil.  This was an unfortunate\nchoice of wording.  It is kept this way to preserve backward\ncompatibility.  The intended meaning is \"insert the pair if\nfollowed by closing pair?\", t = yes." make-obsolete-variable "the option was removed and no longer has any effect." "1.10" sp-autoskip-closing-pair #[0 "\300\207" [always-end] 1] "Determine the behaviour when skipping closing delimiters.\n\nIf t, skip the following closing pair if the expression is\nactive (that is right after insertion).  This is controlled by\n`sp-cancel-autoskip-on-backward-movement'.\n\nIf set to \"always-end\", skip the closing pair even if the\nexpression is not active and point is at the end of the\nexpression.  This only works for expressions with\nsingle-character delimiters.\n\nIf set to \"always\", `sp-up-sexp' is called whenever the closing\ndelimiter is typed inside a sexp of the same type.  This is the\nparedit-like behaviour.  This setting only works for\nsingle-character delimiters and does not work for string-like\ndelimiters.\n\nSee `sp-autoskip-opening-pair' for similar setting for\nstring-like delimiters.\n\nSee also `sp-skip-closing-pair'." (radio (const :tag "Never skip closing delimiter" nil) (const :tag "Skip closing delimiter in active expressions" t) (const :tag "Always skip closing delimiter if at the end of sexp" always-end) (const :tag "Always skip closing delimiter" always)) make-variable-buffer-local sp-autoskip-opening-pair #[0 "\300\207" [nil] 1] "Determine the behaviour when skipping opening delimiters.\n\nIf non-nil, skip into the following string-like expression\ninstead of inserting a new pair." sp-cancel-autoskip-on-backward-movement #[0 "\300\207" [t] 1] "If non-nil, deactivate the active expression on backward movement.\n\nNote: the name of this variable is a historic coincidence and\nwill change in some future release to reflect its real purpose.\n\nSee also `sp-skip-closing-pair'." sp-autodelete-pair #[0 "\300\207" [t] 1] "If non-nil, auto delete pairs.  See `sp-delete-pair'." sp-autodelete-closing-pair #[0 "\300\207" [t] 1] "If non-nil, auto delete the whole closing-pair.  See `sp-delete-pair'." sp-autodelete-opening-pair #[0 "\300\207" [t] 1] "If non-nil, auto delete the whole opening-pair.  See `sp-delete-pair'." sp-undo-pairs-separately #[0 "\300\207" [nil] 1] "If non-nil, put an `undo-boundary' before each inserted pair.\n\nCalling undo after smartparens complete a pair will remove only\nthe pair before undoing any previous insertion.\n\nWARNING: This option is implemented by hacking the\n`buffer-undo-list'.  Turning this option on might have\nirreversible consequences on the buffer's undo information and in\nsome cases might remove important information.  Usage of package\n`undo-tree' is recommended if you ever need to revert to a state\nunreachable by undo." sp-successive-kill-preserve-whitespace #[0 "\300\207" [1] 1] "Control the behaviour of `sp-kill-sexp' on successive kills.\n\nIn the description, we consider more than one space\n\"superfluous\", however, newlines are preserved." (radio (const :tag "Always preserve the whitespace" 0) (const :tag "Remove superfluous whitespace after last kill" 1) (const :tag "Remove superfluous whitespace after all kills" 2)) sp-autowrap-region #[0 "\300\207" [t] 1] "If non-nil, wrap the active region with pair." sp-wrap-show-possible-pairs #[0 "\300\207" [t] 1] "If non-nil, show possible pairs which can complete the wrapping." sp-autodelete-wrap #[0 "\300\207" [t] 1] "If non-nil, autodelete opening and closing pair of most recent wrapping.\n\nDeletion command must be the very first command after the\ninsertion, otherwise normal behaviour is applied." sp-wrap-repeat-last #[0 "\300\207" [1] 1] "Context in which smartparens repeats the last wrap.\n\nIf the last operation was a wrap and we insert another pair at\nthe beginning or end of the last wrapped region, repeat the\nwrap on this region with current pair." (radio (const :tag "Do not repeat wrapping" 0) (const :tag "Only repeat if current tag is the same as the last one" 1) (const :tag "Always repeat if the point is after the opening/closing delimiter of last wrapped region" 2)) sp-wrap-entire-symbol #[0 "\300\207" [nil] 1] "If non-nil, do NOT wrap the entire symbol, only the part after point.\n\nIf set to \"Enable globally\", smart symbol wrapping is active\neverywhere.  This is the default option.\n\nIf set to \"Disable globally\", smart symbol wrapping is disabled\neverywhere.\n\nOtherwise, a list of major modes where smart symbol wrapping is\n*disabled* can be supplied.\n\nExamples:\n\n foo-ba|r-baz -> (|foo-bar-baz) ;; if enabled\n\n foo-ba|r-baz -> foo-ba(|r-baz) ;; if disabled" (choice (const :tag "Enable globally" nil) (const :tag "Disable globally" globally) (repeat :tag "Disable in these major modes" symbol)) sp-wrap-from-point #[0 "\300\207" [nil] 1] "If non-nil, do not wrap from the beginning of next expression but from point.\n\nHowever, if the point is inside a symbol/word, the entire\nsymbol/word is wrapped.  To customize this behaviour, see\nvariable `sp-wrap-entire-symbol'." sp-wrap-respect-direction #[0 "\300\207" [nil] 1] "When non-nil respect the wrap direction.\n\nWhen non-nil, wrapping with opening pair always jumps to the\nbeginning of the region and wrapping with closing pair always\njumps to the end of the region.\n\n  |fooM -> [ -> |[foo]M\n  Mfoo| -> [ -> |[foo]M\n  |fooM -> ] -> M[foo]|\n  Mfoo| -> ] -> M[foo]|\n\nWhen nil, closing pair places the point at the end of the region\nand the opening pair leaves the point at its original\nposition (before or after the region).\n\n  |fooM -> [ -> [|fooM]\n  Mfoo| -> [ -> M[foo]|\n  |fooM -> ] -> M[foo]|\n  Mfoo| -> ] -> M[foo]|" sp-escape-wrapped-region #[0 "\300\207" [t] 1] "If non-nil, escape special chars inside the just wrapped region." sp-escape-quotes-after-insert #[0 "\300\207" [t] 1] "If non-nil, escape string quotes if typed inside string." sp-navigate-consider-sgml-tags #[0 "\300\207" [(html-mode)] 1] "List of modes where sgml tags are considered to be sexps." (repeat symbol) sp-navigate-use-textmode-stringlike-parser #[0 "\300\207" [((derived . text-mode))] 1] "List of modes where textmode stringlike parser is used.\n\nSee `sp-get-textmode-stringlike-expression'.\n\nEach element of the list can either be a symbol which is then\nchecked against `major-mode', or a cons (derived . PARENT-MODE),\nwhere PARENT-MODE is checked using `derived-mode-p'." (repeat (choice (symbol :tag "Major mode") (cons :tag "Derived mode" (const derived) (symbol :tag "Parent major mode name")))) sp-navigate-consider-symbols #[0 "\300\207" [t] 1] "If non-nil, consider symbols outside balanced expressions as such.\n\nSymbols are recognized by function `sp-forward-symbol'.  This\nsetting affect all the navigation and manipulation functions\nwhere it make sense.\n\nAlso, special handling of strings is enabled, where the whole\nstring delimited with \"\" is considered as one token.\n\nWARNING: This is a legacy setting and changing its value to NIL\nmay break many things.  It is kept only for backward\ncompatibility and will be removed in the next major release." sp-navigate-comments-as-sexps #[0 "\300\207" [t] 1] "If non-nil, consider comments as sexps in `sp-get-enclosing-sexp'.\n\nIf this option is enabled, unbalanced expressions in comments are\nnever automatically closed (see `sp-navigate-close-if-unbalanced')." sp-navigate-skip-match #[0 "\301BC\207" [sp-lisp-modes sp--elisp-skip-match] 2] "Major-mode dependent specifications of skip functions.\n\nAlist where the key is a list of major-modes and the value is a\nfunction used to skip over matches in `sp-get-paired-expression'.\nThis function takes three arguments: the currently matched\ndelimiter, beginning of match and end of match.  If this function\nreturns true, the current match will be skipped.\n\nYou can use this to skip over expressions that serve multiple\nfunctions, such as if/end pair or unary if in Ruby or * in\nmarkdown when it signifies list item instead of emphasis.  If the\nexception is only relevant to one pair, you should rather\nuse :skip-match option in `sp-local-pair'." (alist :key-type (repeat symbol) :value-type symbol) sp-navigate-reindent-after-up #[0 "\301BC\207" [sp-lisp-modes interactive] 2] "Modes where sexps should be reindented after `sp-up-sexp'.\n\nThe whitespace between the closing delimiter and last \"thing\"\ninside the expression is removed.  It works analogically for the\n`sp-backward-up-sexp'.\n\nNote that this also happens when `sp-skip-closing-pair' is\ninvoked (usually in strict mode when the closing delimiter is\ntyped) as it calls `sp-up-sexp' internally.  This behaviour can\nbe customized by various settings of `sp-autoskip-closing-pair'\nand `sp-autoskip-opening-pair'.\n\nIf the mode is in the list \"interactive\", only reindent the sexp\nif the command was called interactively.  This is recommended for\ngeneral use.\n\nIf the mode is in the list \"always\", reindend the sexp even if the\ncommand was called programatically." (alist :options (interactive always) :value-type (repeat symbol)) sp-navigate-reindent-after-up-in-string #[0 "\300\207" [t] 1] "If non-nil, `sp-up-sexp' will reindent inside strings.\n\nIf `sp-navigate-reindent-after-up' is enabled and the point is\ninside a string, this setting determines if smartparens should\nreindent the current (string) sexp or not." sp-navigate-close-if-unbalanced #[0 "\300\207" [nil] 1] "If non-nil, insert the closing pair of the un-matched pair on `sp-up-sexp'.\n\nThe closing delimiter is inserted after the symbol at\npoint (using `sp-previous-sexp')." sp-navigate-interactive-always-progress-point #[0 "\300\207" [nil] 1] "Make point always move in the direction of navigation.\n\nIf non-nil and the function is called interactively,\n`sp-next-sexp' and `sp-previous-sexp' will always move the point\nto the end/beg of such an expression where the point would end up\nbeing further in the direction of travel.\n\nNote: this behaviour will become default in release 2.0 and will\ncease to be configurable." sp-sexp-prefix #[0 "\300\207" [nil] 1] "Alist of `major-mode' specific prefix specification.\n\nEach item is a list with three properties:\n- major mode\n- a constant symbol 'regexp or 'syntax\n- a regexp or a string containing syntax class codes.\n\nIf the second argument is 'regexp, the third argument is\ninterpreted as a regexp to search backward from the start of an\nexpression.\n\nIf the second argument is 'syntax, the third argument is\ninterpreted as string containing syntax codes that will be\nskipped.\n\nYou can also override this property locally for a specific pair\nby specifying its :prefix property." (repeat (list symbol (choice (const :tag "Regexp" regexp) (const :tag "Syntax class codes" syntax)) string)) sp-sexp-suffix #[0 "\300\207" [nil] 1] "Alist of `major-mode' specific suffix specification.\n\nEach item is a list with three properties:\n- major mode\n- a constant symbol 'regexp or 'syntax\n- a regexp or a string containing syntax class codes.\n\nIf the second argument is 'regexp, the third argument is\ninterpreted as a regexp to search forward from the end of an\nexpression.\n\nIf the second argument is 'syntax, the third argument is\ninterpreted as string containing syntax codes that will be\nskipped.\n\nYou can also override this property locally for a specific pair\nby specifying its :suffix property." (repeat (list symbol (choice (const :tag "Regexp" regexp) (const :tag "Syntax class codes" syntax)) string)) sp-split-sexp-always-split-as-string #[0 "\300\207" [t] 1] "Determine if sexp inside string is split.\n\nIf the point is inside a sexp inside a string, the default\nbehaviour is now to split the string, such that:\n\n  \"foo (|) bar\"\n\nbecomes\n\n   \"foo (\"|\") bar\"\n\ninstead of\n\n   \"foo ()|() bar\".\n\nNote: the old default behaviour was the reverse, it would split\nthe sexp, but this is hardly ever what you want.\n\nYou can add a post-handler on string pair and check for\n'split-string action to add concatenation operators of the\nlanguage you work in (in each `major-mode' you can have a separate\nhook).\n\nFor example, in PHP the string concatenation operator is a\ndot (.), so you would add:\n\n  (defun my-php-post-split-handler (_ action _)\n    (when (eq action 'split-sexp)\n      (just-one-space)\n      (insert \".  . \")\n      (backward-char 3)))\n\n  (sp-local-pair 'php-mode \"'\" nil\n   :post-handlers '(my-php-post-split-handler))\n\nThen\n\n  echo 'foo |baz';\n\nresults in\n\n  echo 'foo' . | . 'baz';" sp-hybrid-kill-excessive-whitespace #[0 "\300\207" [nil] 1] "Determine how `sp-kill-hybrid-sexp' kills excessive whitespace.\n\nIf non-nil, `sp-kill-hybrid-sexp' will delete all whitespace\nup until next hybrid sexp if the point is at the end of line or\non a blank line.\n\nWhen it is set to 'kill, whitespace will be appended to the sexp\nin kill ring." (choice (const :tag "Delete" t) (const :tag "Kill" kill) (const :tag "Off" nil)) sp-hybrid-kill-entire-symbol #[0 "\300\207" [nil] 1] "Governs how symbols under point are treated by `sp-kill-hybrid-sexp'.\n\nIf t, always kill the symbol under point.\n\nIf nil, never kill the entire symbol and only kill the part after point.\n\nIf a function, this should be a zero-arg predicate.  When it\nreturns non-nil value, we should kill from point." (radio (const :tag "Always kill entire symbol" t) (const :tag "Always kill from point" nil) (const :tag "Kill from point only inside strings" sp-point-in-string) (function :tag "Custom predicate")) sp-comment-string #[0 "\300\207" [nil] 1] "String that is inserted after calling `sp-comment'.\n\nIt is an alist of list of major modes to a string.\n\nThe value of `comment-start' is used if the major mode is not found." (alist :key-type (repeat symbol) :value-type string) sp-highlight-pair-overlay #[0 "\300\207" [t] 1] "If non-nil, autoinserted pairs are highlighted while point is inside the pair." sp-highlight-wrap-overlay #[0 "\300\207" [t] 1] "If non-nil, wrap overlays are highlighted during editing of the wrapping pair." sp-highlight-wrap-tag-overlay #[0 "\300\207" [t] 1] "If non-nil, wrap tag overlays are highlighted during editing of the wrapping tag pair." sp-echo-match-when-invisible #[0 "\300\207" [t] 1] "If non-nil, show-smartparens-mode prints the line of the\nmatching paren in the echo area if not visible on screen." sp-message-width #[0 "\300\207" [frame] 1] "Length of information and error messages to display.\n\nIf set to 'frame (the default), messages are chosen based of the\nframe width.  t means chose the default (verbose) message, nil\nmeans mute.  Integers specify the maximum width." (choice (const :tag "Fit to frame" frame) (const :tag "Verbose" t) (const :tag "Mute" nil) (integer :tag "Max width")) sp-use-subword #[0 "\300\207" [nil] 1] "Override of `subword-mode' killing behaviour.\n\nIf non-nill, `sp-kill-word' and `sp-backward-kill-word' only\nkill \"subwords\" when `subword-mode' is active."] 8)
#@75 Return t if `delete-selection-mode' or `cua-delete-selection' is enabled.
(defalias 'sp--delete-selection-p #[0 "\303\300!\203\n\206\303\301!\205    \205\n\207" [delete-selection-mode cua-delete-selection cua-mode boundp] 2 (#$ . 65130)])
#@146 Decide if the current command should delete the region or not.
 
This check is used as value of 'delete-selection property on the
command symbol.
(defalias 'sp--delete-selection-supersede-p #[0 "\302\232\204\303\304 \305 \"\203\306\207\307\310!\210\311\312\207" [current-prefix-arg this-command (4) sp-region-ok-p region-beginning region-end supersede sp-message :unbalanced-region ignore nil] 3 (#$ . 65381)])
#@214 Decide if the current `self-insert-command' should be able to
replace the region.
 
This check is added to the special hook
`self-insert-uses-region-functions' which is checked by
`delete-selection-uses-region-p'.
(defalias 'sp--self-insert-uses-region-strict-p #[0 "\302\232\206\f\303\304 \305 \"?\205\306\307\207" [current-prefix-arg this-command (4) sp-region-ok-p region-beginning region-end ignore t] 3 (#$ . 65804)])
(byte-code "\300\301\302\303\304$\210\305\301\304\"\210\300\306\307\303\304$\210\305\306\304\"\207" [ad-add-advice cua-replace-region (fix-sp-wrap nil t (advice lambda nil "Fix `sp-wrap' in `cua-selection-mode'." (if (sp-wrap--can-wrap-p) (cua--fallback) ad-do-it))) around nil ad-activate cua-delete-region (fix-sp-delete-region nil t (advice lambda nil "If `smartparens-strict-mode' is enabled, perform a region\ncheck before deleting." (if smartparens-strict-mode (progn (unless (or current-prefix-arg (sp-region-ok-p (region-beginning) (region-end))) (user-error (sp-message :unbalanced-region :return))) ad-do-it) ad-do-it)))] 5)
#@137 Only ever call this from sp-get!  This function does the
replacement of all the keywords with actual calls to sp-get.
 
(fn STRUCT LIST)
(defalias 'sp--get-substitute #[514 "\211<\203\240\211@\300=\203 \207\301\302\303\304\305\306!\307\"\310\311%@\211\312\267\202\233\313\314!\315A@DC\316\317\320BB\321\322\323\324D\325BBBB\324D\326BBBBE\262\202\234\313\314!\315A@DC\316\327\330BB\321\324D\331BB\332\333\324D\334BBBBBBE\262\202\234\335\202\234\336\202\234\321\324A@D\337BB\202\234\321\324A@D\340BB\202\234\262\"\207\341!\203\253\342\"\207\207" [sp-get mapcar make-byte-code 257 "\301\300\"\207" vconcat vector [sp--get-substitute] 4 "\n\n(fn X)" #s(hash-table size 6 test eq rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (sp-do-move-op 35 sp-do-move-cl 79 sp-do-del-op 123 sp-do-del-cl 127 sp-do-put-op 131 sp-do-put-cl 143)) make-symbol "--sp-argument--" let if < (:beg-prf) progn (goto-char :beg-prf) (delete-char (+ :op-l :prefix-l)) goto-char ((insert :prefix :op)) ((insert :prefix :op) (goto-char :beg-prf) (delete-char (+ :op-l :prefix-l))) > (:end-in) ((insert :cl :suffix) (goto-char :end-in) (delete-char (+ :cl-l :suffix-l))) (goto-char :end-in) (delete-char (+ :cl-l :suffix-l)) ((insert :cl :suffix)) (progn (goto-char :beg-prf) (delete-char (+ :op-l :prefix-l))) (progn (goto-char :end-in) (delete-char (+ :cl-l :suffix-l))) ((insert :prefix :op)) ((insert :cl :suffix)) keywordp sp--get-replace-keyword] 15 (#$ . 66873)])
#@23 
 
(fn STRUCT KEYWORD)
(defalias 'sp--get-replace-keyword #[514 "\211\300\267\202\301\302BB\207\301\303BB\207\304\301\305BB\306\301\307BBDE\207\310\301\311BB\306\301\312BBDE\207\310\301\313BB\306\301\314BBDE\207\304\301\315BB\306\301\316BBDE\207\301\317BB\207\301\320BB\207\306\301\321BBD\207\306\301\322BBD\207\310\301\323BB\301\324BB\310\306\301\325BBDD\310\306\301\326BBDD\257\207\310\301\327BB\301\330BBE\207\310\301\331BB\301\332BB\306\301\333BBD\306\301\334BBD\257\207\301\335BB\207\306\301\336BBD\207\301\337BB\207\306\301\340BBD\207\341\301\342BB\301\343BBE\207\304\306\301\344BBD\306\301\345BBDE\207\341\301\346BB\301\347BBE\207\304\306\301\350BBD\306\301\351BBDE\207\207" [#s(hash-table size 21 test eql rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (:beg 6 :end 12 :beg-in 18 :end-in 33 :beg-prf 48 :end-suf 63 :op 78 :cl 84 :op-l 90 :cl-l 98 :len 106 :len-out 140 :len-in 153 :prefix 183 :prefix-l 189 :suffix 197 :suffix-l 203 :opp 211 :opp-l 224 :cls 241 :cls-l 254)) plist-get (:beg) (:end) + (:beg) length (:op) - (:end) (:cl) (:beg) (:prefix) (:end) (:suffix) (:op) (:cl) (:op) (:cl) (:end) (:beg) (:prefix) (:suffix) (:end) (:beg) (:end) (:beg) (:op) (:cl) (:prefix) (:prefix) (:suffix) (:suffix) concat (:prefix) (:op) (:prefix) (:op) (:cl) (:suffix) (:cl) (:suffix)] 11 (#$ . 68364)])
#@2161 Get a property from a structure.
 
STRUCT is a plist with the format as returned by `sp-get-sexp'.
Which means this macro also works with `sp-get-symbol',
`sp-get-string' and `sp-get-thing'.
 
FORMS is an attribute we want to query.  Currently supported
attributes are:
 
:beg       - point in buffer before the opening delimiter
:end       - point in the buffer after the closing delimiter
:beg-in    - point in buffer after the opening delimiter
:end-in    - point in buffer before the closing delimiter
:beg-prf   - point in buffer before the prefix of this expression
:end-suf   - point in buffer after the suffix of this expression
:op        - opening delimiter
:cl        - closing delimiter
:op-l      - length of the opening pair
:cl-l      - length of the closing pair
:len       - length of the entire expression, including enclosing
             delimiters, the prefix and the suffix
:len-out   - length of the the pair ignoring the prefix and suffix,
             including delimiters
:len-in    - length of the pair inside the delimiters
:prefix    - expression prefix
:prefix-l  - expression prefix length
:suffix    - expression suffix
:suffix-l  - expression suffix length
 
These special "functions" are expanded to do the selected
action in the context of currently queried pair:
 
Nullary:
(sp-do-del-op) - remove prefix and opening delimiter
(sp-do-del-cl) - remove closing delimiter and suffix
 
Unary:
(sp-do-move-op p) - move prefix and opening delimiter to point p
(sp-do-move-cl p) - move closing delimiter and suffix to point p
(sp-do-put-op p) - put prefix and opening delimiter at point p
(sp-do-put-cl p) - put closing delimiter and suffix at point p
 
In addition to these simple queries and commands, this macro
understands arbitrary forms where any of the aforementioned
attributes are used.  Therefore, you can for example query for
"(+ :op-l :cl-l)".  This query would return the sum of lengths
of opening and closing delimiter.  A query
"(concat :prefix :op)" would return the string containing
expression prefix and the opening delimiter.
 
Special care is taken to only evaluate the STRUCT argument once.
 
(fn STRUCT &rest FORMS)
(defalias 'sp-get '(macro . #[385 "\300\301!\302\303DCBB\"\207" [make-symbol "struct" sp--get-substitute let] 8 (#$ . 69730)]))
(byte-code "\300\301\302\303#\304\301\305\306#\207" [function-put sp-get lisp-indent-function 1 put edebug-form-spec (form body)] 5)
#@158 Call `indent-region' unless `aggressive-indent-mode' is enabled.
 
START, END and COLUMN are the same as in `indent-region'.
 
(fn START END &optional COLUMN)
(defalias 'sp--indent-region #[770 "\301\300!\205?\205%\302K\303\304\305\306\307!\310\"\311$\216\302\312M\210\313#)\262\207" [aggressive-indent-mode boundp message make-byte-code 0 "\301\300M\207" vconcat vector [message] 2 ignore indent-region] 10 (#$ . 72163)])
#@152 Add ARG as first argument to each form in FORMS.
 
This can be used with `sp-local-pair' calls to automatically
insert the modes.
 
(fn ARG &rest FORMS)
(defalias 'sp-with-modes '(macro . #[385 "\300\301!\302DC\303\304\305\306\307\310\311    !\312\"\313\314%\"BE\207" [make-symbol "modes" let progn mapcar make-byte-code 257 "\301@\300DA\"\207" vconcat vector [append] 4 "\n\n(fn FORM)"] 13 (#$ . 72600)]))
(byte-code "\300\301\302\303#\304\301\305\306#\210\307\310\311\312BC\"\207" [function-put sp-with-modes lisp-indent-function 1 put edebug-form-spec (form body) font-lock-add-keywords emacs-lisp-mode "(\\(sp-\\(?:compare-sexps\\|get\\|with-modes\\)\\)\\_>" ((1 font-lock-keyword-face))] 5)
#@299 Ensure that searching done within BODY is case-sensitive.
 
Bind `case-fold-search' to nil if it is not already and avoid the
bind if it is already.  Any function that needs to use any of the
sp--looking-* functions more than once should wrap them all in
`sp--with-case-sensitive'.
 
(fn &rest BODY)
(defalias 'sp--with-case-sensitive '(macro . #[128 "\300\301\302\303BBBBB\207" [if case-fold-search let ((case-fold-search nil))] 6 (#$ . 73305)]))
(byte-code "\300\301\302\303#\304\301\305\306#\207" [function-put sp--with-case-sensitive lisp-indent-function 0 put edebug-form-spec (body)] 5)
#@61 Check to see if the current `evil-state' is in normal mode.
(defalias 'sp--evil-normal-state-p #[0 "\300\301!\205\301 \207" [fboundp evil-normal-state-p] 2 (#$ . 73904)])
#@61 Check to see if the current `evil-state' is in motion mode.
(defalias 'sp--evil-motion-state-p #[0 "\300\301!\205\301 \207" [fboundp evil-motion-state-p] 2 (#$ . 74083)])
#@61 Check to see if the current `evil-state' is in visual mode.
(defalias 'sp--evil-visual-state-p #[0 "\300\301!\205\301 \207" [fboundp evil-visual-state-p] 2 (#$ . 74262)])
#@142 Return non-nil if line at point is blank (whitespace only).
 
If optional argument P is present test this instead of point.
 
(fn &optional P)
(defalias 'sp-point-in-blank-line #[256 "\212\211\203\211b\210\300 \210\301\302!)\207" [beginning-of-line looking-at "[     ]*$"] 3 (#$ . 74442)])
#@251 Return non-nil if point is inside blank (whitespace only) sexp.
 
If optional argument P is present test this instead of point.
 
Warning: it is only safe to call this when point is inside a
sexp, otherwise the call may be very slow.
 
(fn &optional P)
(defalias 'sp-point-in-blank-sexp #[256 "\212\211\203\211b\210\301 \211\2053\211\302\303\304\305\"\304\306\"G\\\304\307\"\304\310\"GZ\"\311\312\313#)\266\203\262\262)\207" [inhibit-changing-match-data sp-get-enclosing-sexp "\\`[     \n]*\\'" buffer-substring-no-properties plist-get :beg :op :end :cl nil t string-match] 10 (#$ . 74736)])
#@96 Test if the char at POINT is escaped or not.
 
POINT defaults to `point'.
 
(fn &optional POINT)
(defalias 'sp-char-is-escaped-p #[256 "\211\206`\262\301 \302\303\304\305\306!\307\"\310$\216\212b\210\311\211\312Q\313\314#)\205.\315\316\303!G\317\"\317=)\207" [sp-escape-char match-data make-byte-code 0 "\301\300\302\"\207" vconcat vector [set-match-data evaporate] 3 looking-back "+" nil t logand match-string 1] 8 (#$ . 75341)])
#@107 Memoize the last result of `syntax-ppss'.
 
P is the point at which we run `syntax-ppss'
 
(fn &optional P)
(defalias 'sp--syntax-ppss #[256 "\211\206`\302!    >\204\303\304\300D\"\210\305H@=\203CeA@=\203Cd\3068=\203C\302!    >\204=\303\304\300D\"\210\307H\202\220\302!    >\204R\303\304\300D\"\210\305H\204_\310\311\312\313\211$\210\302!    >\204n\303\304\300D\"\210\211\305edEI\266\302!    >\204\207\303\304\300D\"\210\211\307\314!I\262\207" [sp-state cl-struct-sp-state-tags type-of signal wrong-type-argument 3 2 4 add-hook before-change-functions sp--reset-memoization t syntax-ppss] 9 (#$ . 75784)])
#@338 Return non-nil if point is inside string or documentation string.
 
This function actually returns the 3rd element of `syntax-ppss'
which can be a number if the string is delimited by that
character or t if the string is delimited by general string
fences.
 
If optional argument P is present test this instead of point.
 
(fn &optional P)
(defalias 'sp-point-in-string #[256 "\3001 \212\301\302!8)0\207\210\303\207" [(error) 3 sp--syntax-ppss nil] 4 (#$ . 76416)])
#@126 Return non-nil if point is inside comment.
 
If optional argument P is present test this instead off point.
 
(fn &optional P)
(defalias 'sp-point-in-comment #[256 "\211\206`\262\3001\224\212\301\302!8?\205\221\303\302!8\206\221\211dW\2033\211fz\304>\2033\211f\305=?\206\221\306!@\211\205\217\307\310\311\312\"\"\313U\204Q\303\314\315\\!8\206\217\307\310\311\316\"\"\313U\204f\303\314T!8\206\217\307\310\311\317\"\"\313U\204{\303\314S!8\206\217\307\310\311\320\"\"\313U?\205\217\303\314\315Z!8\262)0\207\210\321\207" [(error) 3 sp--syntax-ppss 4 (60 62) 10 syntax-after logand lsh 1 16 0 syntax-ppss 2 17 18 19 nil] 6 (#$ . 76888)])
#@160 Return non-nil if point is inside string, documentation string or a comment.
 
If optional argument P is present, test this instead of point.
 
(fn &optional P)
(defalias 'sp-point-in-string-or-comment #[256 "\300!\206    \301!\207" [sp-point-in-string sp-point-in-comment] 3 (#$ . 77555)])
#@230 Return non-nil if `point' is inside symbol.
 
If P is non-nil, interpret it as buffer position and test there.
 
Point is inside symbol if characters on both sides of the point
are in either word or symbol class.
 
(fn &optional P)
(defalias 'sp-point-in-symbol #[256 "\211\206`\262\212\211b\210g\300U?\205gz\301>\205hz\302>)\207" [0 (119 95) (119 95)] 3 (#$ . 77851)])
#@137 Return a description of the last EVENT.
 
Replace all the function key symbols with garbage character (ň).
 
TODO: fix this!
 
(fn EVENT)
(defalias 'sp--single-key-description #[257 "\301!\302\303\304\305#)\266\203\203\306\202,\307\303\304\305#)\266\203\203+\310\202,\211\207" [inhibit-changing-match-data single-key-description "<.*?>" nil t string-match "ň" "SPC" " "] 9 (#$ . 78232)])
#@49 Get the indentation offset of the current line.
(defalias 'sp--current-indentation #[0 "\212\300 \210i)\207" [back-to-indentation] 1 (#$ . 78641)])
#@183 Calculate correct indentation after re-indent.
 
OLD-COLUMN is the column before reindent.
 
OLD-INDENTATION is the indentation depth before reindent.
 
(fn OLD-COLUMN OLD-INDENTATION)
(defalias 'sp--calculate-indentation-offset #[514 "\300 Y\203Z\\\202\211X\203\211\202\207" [sp--current-indentation] 6 (#$ . 78796)])
#@205 Set the current column to proper value.
 
See `sp--keep-indentation'.
 
OLD-COLUMN is the column before reindent.
 
OLD-INDENTATION is the indentation depth before reindent.
 
(fn OLD-COLUMN OLD-INDENTATION)
(defalias 'sp--back-to-indentation #[514 "\300\"\301!\207" [sp--calculate-indentation-offset move-to-column] 5 (#$ . 79134)])
#@369 Execute BODY and restore the column.
 
If point was in code move it along if the line is reinvented so
it is the same distance relative to first code column.
 
If point was previously in the indentation region but would end
up in code, move it to the first code column.
 
If point was in the indentation region and is still there after
BODY, do nothing.
 
(fn &rest BODY)
(defalias 'sp--keep-indentation '(macro . #[128 "\300\301!\300\302!\303\304B\305BD\306\307EC\"BB\207" [make-symbol "c" "i" let ((current-column)) ((sp--current-indentation)) append sp--back-to-indentation] 10 (#$ . 79474)]))
(byte-code "\300\301\302\303#\304\301\305\306#\207" [function-put sp--keep-indentation lisp-indent-function 0 put edebug-form-spec (body)] 5)
#@334 List of commands that are some sort of `self-insert-command'.
 
Many modes rebind "self-inserting" keys to "smart" versions
which do some additional processing before delegating the
insertion to `self-insert-command'.  Smartparens needs to be able
to distinguish these to properly handle insertion and reinsertion
of pairs and wraps.
(defvar sp--self-insert-commands '(self-insert-command org-self-insert-command LaTeX-insert-left-brace) (#$ . 80223))
#@483 List of commands which are handled as if they were `self-insert-command's.
 
Some modes redefine "self-inserting" keys to "smart" versions
which do some additional processing but do _not_ delegate the
insertion to `self-insert-command', instead inserting via
`insert'.  Smartparens needs to be able to distinguish these to
properly handle insertion and reinsertion of pairs and wraps.
 
The `sp--post-self-insert-hook-handler' is called in the
`post-command-hook' for these commands.
(defvar sp--special-self-insert-commands '(TeX-insert-dollar TeX-insert-quote quack-insert-opening-paren quack-insert-closing-paren quack-insert-opening-bracket quack-insert-closing-bracket racket-insert-closing-paren racket-insert-closing-bracket racket-insert-closing-brace) (#$ . 80681))
#@73 Return non-nil if `this-command' is some sort of `self-insert-command'.
(defalias 'sp--self-insert-command-p #[0 "    >\207" [this-command sp--self-insert-commands] 2 (#$ . 81460)])
#@177 Return non-nil if `this-command' is "special" self insert command.
 
A special self insert command is one that inserts a character but
does not trigger `post-self-insert-hook'.
(defalias 'sp--special-self-insert-command-p #[0 "    >\207" [this-command sp--special-self-insert-commands] 2 (#$ . 81647)])
#@63 Return 1 if X is positive, -1 if negative, 0 if zero.
 
(fn X)
(defalias 'sp--signum #[257 "\211\300V\203\301\207\211\300W\203\302\207\300\207" [0 1 -1] 3 (#$ . 81953)])
#@446 Return non-nil if the expressions A and B are equal.
 
Two expressions are equal if their :beg property is the same.
 
If optional argument FUN is non-nil, it is the comparison
function.
 
If optional argument WHAT-A is non-nil, use it as a keyword on
which to do the comparsion (default to :beg).
 
If optional argument WHAT-B is non-nil, use it as a keyword on
which to do the comparsion (default to WHAT-A).
 
(fn A B &optional FUN WHAT-A WHAT-B)
(defalias 'sp-compare-sexps '(macro . #[1282 "\206\300\262\206\f\301\262\211\206\262\302E\302EE\207" [equal :beg sp-get] 10 (#$ . 82133)]))
(put 'sp-compare-sexps 'edebug-form-spec '(form form &optional functionp keywordp keywordp))
#@315 Display a message.
 
KEY is either a string or list of strings, or a keyword,
in which case the string list is looked up in
`sp-message-alist'.  The string to be displayed is chosen based on
the `sp-message-width' variable.
 
If RETURN is non-nil return the string instead of printing it.
 
(fn KEY &optional RETURN)
(defalias 'sp-message #[513 "<\203    \202;\203C\202\236A\211\205v    \205v    \302=\2036\203.\211@\202v\303\304@\"\202v    \305=\203A\306 \202B    \307\211\203c\211@\211GX\203\\\211GGV\203\\\211\262A\266\202\202D\210\211\205t\203p\211\202t\303\304\"\266\202\207" [sp-message-alist sp-message-width t message "%s." frame frame-width nil] 9 (#$ . 82836)])
#@117 Merge a property PROP from NEW-PAIR into OLD-PAIR.
 
The list OLD-PAIR must not be nil.
 
(fn PROP NEW-PAIR OLD-PAIR)
(defalias 'sp--merge-prop #[771 "\300\"\301\302\"\203\303\302#\202\335\301\304\"\203\"\303\304#\202\335\301\305\"\2031\303\305#\202\335\301\306\"\203@\303\306#\202\335\301\307\"\203O\303\307#\202\335\301\310\"\203^\303\310#\202\335\311\312\"\205\335\211@\211\313\267\202\223\303\314\300\n\"A\"#\202\333\303\315\300\n\"A\"#\202\333\203\320@<\203\320@@\316>\203\320\317\236\320\236\303\314\300    \f\"A\"#\210\303\315\300    \f\"A\"#\266\202\202\333\303\300    \"#\262\207" [plist-get eql :close plist-put :prefix :suffix :skip-match :trigger :trigger-wrap memql (:actions :when :unless :pre-handlers :post-handlers) #s(hash-table size 2 test eql rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (:add 109 :rem 128)) -union -difference (:add :rem) :add :rem] 14 (#$ . 83534)])
#@97 Merge OLD-PAIR and NEW-PAIR.
This modifies the OLD-PAIR by side effect.
 
(fn OLD-PAIR NEW-PAIR)
(defalias 'sp--merge-pairs #[514 "\300\300\203)@\301\246\300U\203\302#\210T\262\210\211T\262A\262\202\266\207" [0 2 sp--merge-prop] 10 (#$ . 84512)])
#@104 Copy properties from NEW-PAIR to OLD-PAIR.
 
The list OLD-PAIR must not be nil.
 
(fn NEW-PAIR OLD-PAIR)
(defalias 'sp--update-pair #[514 "\300\300\203<@\301\246\300U\203,\302\"\203\"\302\"\303\232\204,\304\302    \"#\210T\262\210\211T\262A\262\202\266\207" [0 2 plist-get (:add) plist-put] 12 (#$ . 84786)])
#@222 Update the PAIR for major mode MODE.
 
If this pair is not defined yet for this major mode, add it.  If
this pair is already defined, replace all the properties in the
old definition with values from PAIR.
 
(fn PAIR MODE)
(defalias 'sp--update-pair-list #[514 "\301\302\303\203.\203.@\203\301\262\202\"@=\203\"\211\262\210\211T\262A\262\202\266\211\262\211\204ACBB\202\251\301A\302\303\203v\203v@\203Z\301\262\202j\304\305\"\304\305\"\232\203j\211\262\210\211T\262A\262\202F\266\211\262\304\305\"\204\242\304\306\"\204\230\307\302\236\"\204\230\310\311\"\210AB\241\210\202\247\312\"\210\266\210\207" [sp-pairs nil t 0 plist-get :open :close sp--get-pair error "Pair %s was never defined, please specify closing delimiter in instead of passing `nil'" sp--update-pair] 12 (#$ . 85122)])
#@59 Get the pair with id OPEN from list LIST.
 
(fn OPEN LIST)
(defalias 'sp--get-pair #[514 "\300\301\302\2031\2031@\203\300\262\202%\303\304\"\232\203%\211\262\210\211T\262A\262\202\266\211\207" [nil t 0 plist-get :open] 11 (#$ . 85978)])
#@160 Get the definition of a pair identified by OPEN from list LIST.
 
If PROP is non-nil, return the value of that property instead.
 
(fn OPEN LIST &optional PROP)
(defalias 'sp--get-pair-definition #[770 "\300\"\203\343\301\267\202\334\302\303\"G\202\344\302\304\"G\202\344\302\303\"G\302\304\"G\\\202\344\305\302\"\306\203N@\211<\204B\211B\262\210\211T\262A\262\2022\266\211\237\262\202\344\305\302\307\"\306\203y@\211<\203m\211B\262\210\211T\262A\262\202]\266\211\237\262\202\344\305\302\310\"\306\203\244@\211<\204\230\211B\262\210\211T\262A\262\202\210\266\211\237\262\202\344\311\312\305\302\310\"\306\203\321@\211<\203\305\211B\262\210\211T\262A\262\202\265\266\211\237\262!!\202\344\302\"\202\344\211\207" [sp--get-pair #s(hash-table size 7 test eq rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (:op-l 14 :cl-l 22 :len 30 :post-handlers 44 :post-handlers-cond 87 :when 130 :when-cond 173)) plist-get :open :close nil 0 :post-handlers :when -flatten -concat] 12 (#$ . 86243)])
#@233 Get the definition of pair identified by OPEN.
 
OPEN is the opening delimiter, MODE is the major mode symbol or t
for global definition.
 
If PROP is non-nil, return the value of that property instead.
 
(fn OPEN MODE &optional PROP)
(defalias 'sp-get-pair-definition #[770 "\301\236A#\207" [sp-pairs sp--get-pair-definition] 7 (#$ . 87312)])
#@205 Return the definition of pair defined by OPEN in the current buffer.
 
The value is fetched from `sp-local-pairs'.
 
If PROP is non-nil, return the value of that property instead.
 
(fn OPEN &optional PROP)
(defalias 'sp-get-pair #[513 "\301#\207" [sp-local-pairs sp--get-pair-definition] 6 (#$ . 87664)])
#@222 Merge SPECIFIC pair configuration to the CURRENT configuration.
 
CURRENT defaults to `sp-local-pairs' if it is non-nil or the
global definition from `sp-pairs' if `sp-local-pairs' is nil.
 
(fn SPECIFIC &optional CURRENT)
(defalias 'sp--merge-pair-configurations #[513 "\211\206\f\206\f\302    \236A\303\211\203&\211@\304\305\304\"DB\262A\266\202\202\210\211\203B\211@\306\305\304\"\"\307\"\266A\266\202\202(\210\211\203r\211@\306\305\304\"\"\211\203]\307\"\210\202j\307\304\305\304\"D\"B\262\210A\266\202\202D\210\207" [sp-local-pairs sp-pairs t nil :open plist-get sp--get-pair sp--merge-pairs] 13 (#$ . 87977)])
#@482 Wrap the following expression with PAIR.
 
This function is a non-interactive helper.  To use this function
interactively, bind the following lambda to a key:
 
 (lambda (&optional arg) (interactive "P") (sp-wrap-with-pair "("))
 
This lambda accepts the same prefix arguments as
`sp-select-next-thing'.
 
If region is active and `use-region-p' returns true, the region
is wrapped instead.  This is useful with selection functions in
`evil-mode' to wrap regions with pairs.
 
(fn PAIR)
(defalias 'sp-wrap-with-pair #[257 "\206\305\306 ?\205.\307\310 \203\"    \311=\204\n    >\203\"`\202- \205-\310 ?\205-`\"\312\f\313\314\203]\203]@\203F\312\262\202Q\211@\232\203Q\211\262\210\211T\262A\262\2022\266\211\262\315 \316 \211b\210Ac\210b\210@c\210\306 \203\200\317\"\202\215\317\320\321\"\320\322\"\"\262\207" [current-prefix-arg sp-wrap-entire-symbol major-mode sp-wrap-from-point sp-pair-list 1 use-region-p sp-select-next-thing-exchange sp-point-in-symbol globally nil t 0 region-beginning region-end sp--indent-region plist-get :beg :end] 12 (#$ . 88630)])
#@5781 Add a pair definition.
 
OPEN is the opening delimiter.  Every pair is uniquely determined
by this string.
 
CLOSE is the closing delimiter.  You can use nil for this
argument if you are updating an existing definition.  In this
case, the old value is retained.
 
TRIGGER is an optional trigger for the pair.  The pair will be
inserted if either OPEN or TRIGGER is typed.  This is usually
used as a shortcut for longer pairs or for pairs that can't be
typed easily.
 
TRIGGER-WRAP is the same as TRIGGER but used for wrapping.
 
ACTIONS is a list of actions that smartparens will perform with
this pair.  Possible values are:
 
- insert  - autoinsert the closing pair when opening pair is
  typed.
- wrap    - wrap an active region with the pair defined by opening
  delimiter if this is typed while region is active.
- autoskip - if the sexp is active or `sp-autoskip-closing-pair' is
  set to 'always, skip over the closing delimiter if user types its
  characters in order.
- navigate - enable this pair for navigation/highlight and strictness
  checks
- escape - allow autoescaping of this delimiter in string contexts
 
If the ACTIONS argument has value :rem, the pair is removed.
This can be used to remove default pairs you don't want to use.
For example: (sp-pair "[" nil :actions :rem)
 
WHEN is a list of predicates that test whether the action
should be performed in current context.  The values in the list
should be names of the predicates (that is symbols, not
lambdas!).  They should accept three arguments: opening
delimiter (which uniquely determines the pair), action and
context.  The context argument can have values:
 
- string  - if point is inside string.
- comment - if point is inside comment.
- code    - if point is inside code.  This context is only
  recognized in programming modes that define string semantics.
 
If *any* filter returns t, the action WILL be performed. A number
of filters are predefined: `sp-point-after-word-p',
`sp-point-before-word-p', `sp-in-string-p',
`sp-point-before-eol-p' etc.
 
When clause also supports a special format for delayed insertion.
The condition is a list with commands, predicates (with three
arguments as regular when form) or strings specifying the last
event.  All three types can be combined in one list.  The pair
will be inserted *after* the next command if it matches the any
command on the list, if the last event matches any string on the
list or if any predicate returns true.  If the pair's :when
clause contains this special form, it will never be immediately
inserted and will always test for delayed insertion.
 
UNLESS is a list of predicates.  The conventions are the same as
for the WHEN list.  If *any* filter on this list returns t, the
action WILL NOT be performed.  The predicates in the WHEN list
are checked first, and if any of them succeeds, the UNLESS list
is not checked.
 
Note: the functions on the WHEN/UNLESS lists are also called
"filters" in the documentation.
 
All the filters are run *after* the trigger character is
inserted.
 
PRE-HANDLERS is a list of functions that are called before there
has been some action caused by this pair.  The arguments are the
same as for filters.  Context is relative to the point *before*
the last inserted character.  Because of the nature of the
wrapping operation, this hook is not called if the action is
wrapping.
 
POST-HANDLERS is a list of functions that are called after there
has been some action caused by this pair.  The arguments are the
same as for filters.  Context is relative to current position of
point *after* the closing pair was inserted.
 
After a wrapping action, the point might end on either side of
the wrapped region, depending on the original direction.  You can
use the variable `sp-last-wrapped-region' to retrieve information
about the wrapped region and position the point to suit your
needs.
 
A special syntax for conditional execution of hooks is also
supported.  If the added item is a list (function command1
command2...), where function is a 3 argument function described
above and command(s) can be either name of a command or a string
representing an event.  If the last command or event as described
by `single-key-description' matches any on the list, the hook
will be executed.  This means these hooks are run not after the
insertion, but after the *next* command is executed.
 
Example:
  ((lambda (id act con)
     (save-excursion
       (newline))) "RET" newline)
 
This function will move the closing pair on its own line only if
the next command is `newline' or is triggered by RET.  Otherwise
the pairs stay on the same line.
 
WRAP is a key binding to which a "wrapping" action is bound.
The key should be in format that is accepted by `kbd'.  This
option binds a lambda form:
 
  `(lambda (&optional arg)
     (interactive "P")
     (sp-wrap-with-pair ,OPEN))
 
to the specified key sequence.  The binding is added to global
keymap.  When executed, it wraps ARG (default 1) expressions with
this pair (like `paredit-wrap-round' and friends).  Additionally,
it accepts the same prefix arguments as `sp-select-next-thing'.
 
BIND is equivalent to WRAP.  It is a legacy setting and will be
removed soon.
 
INSERT is a key binding to which an "insert" action is bound.
The key should be in format that is accepted by `kbd'.  This is
achieved by binding a lambda form:
 
 (lambda () (interactive) (sp-insert-pair "pair-id"))
 
to the supplied key, where pair-id is the open delimiter of the
pair.  The binding is added to the global map.  You can also bind
a similar lambda manually.  To only bind this in specific major
modes, use this property on `sp-local-pair' instead.
 
(fn OPEN CLOSE &key TRIGGER TRIGGER-WRAP (ACTIONS \='(wrap insert autoskip navigate)) WHEN UNLESS PRE-HANDLERS POST-HANDLERS WRAP BIND INSERT)
(defalias 'sp-pair #[642 "\301\302\"A@\301\303\"A@\301\304\"\206\305A@\301\306\"A@\301\307\"A@\301\310\"A@\301\311\"A@\301\312\"A@\301    \313\"A@\301\n\314\"A@\n\211\203r\211@\315>\203Z\211AA\262\202G\316\f>A@\203i\317\262\202G\320\321@\"\210\202G\210\322=\203\317\323\236\211\317A\324\203\243@\325\326\"\232\204\227\211B\262\210\211T\262A\262\202\202\266\211\237\262\241\210\327 \324\203\312@r\211q\210\330!\210)\210\211T\262A\262\202\256\266\202i\317\331\326#\262\f\203\344\331\332#\210\n\203\360\331\302 #\210    \203\374\331\303\f#\210\304    B\306    B\307    B\310    B\311    B\257\211\2036\211@\211A\204'\333\323@#\203/\331@A#\210A\266\202\202\210\334\323\"\266\204E\203W\335\336\206L!\337\340\341\342DF\"\210\211\203i\335\343!\337\317\344\345DF\"\210\346 \210\207" [sp-pairs plist-member :trigger :trigger-wrap :actions (nil (wrap insert autoskip navigate)) :when :unless :pre-handlers :post-handlers :wrap :bind :insert (:trigger :trigger-wrap :actions :when :unless :pre-handlers :post-handlers :wrap :bind :insert :allow-other-keys) :allow-other-keys nil error "Keyword argument %s not one of (:trigger :trigger-wrap :actions :when :unless :pre-handlers :post-handlers :wrap :bind :insert)" :rem t 0 plist-get :open buffer-list sp--remove-local-pair plist-put :close sp-get-pair-definition sp--update-pair-list global-set-key read-kbd-macro lambda (&optional arg) (interactive "P") sp-wrap-with-pair kbd (interactive) sp-insert-pair sp--update-local-pairs-everywhere] 22 (#$ . 89727)])
#@2985 Add a local pair definition or override a global definition.
 
MODES can be a single mode or a list of modes where these settings
should be applied.
 
PREFIX is a regular expression matching an optional prefix for
this pair in the specified major modes.  If not specified, the
characters of expression prefix syntax class are automatically
considered instead.  This can be used to attach custom prefixes
to pairs, such as prefix "\function" in \function{arg} in
`LaTeX-mode'.
 
SUFFIX is a regular expression matching an optional suffix for
this pair in the specified major modes.  If not specified, the
characters of punctuation syntax class are automatically
considered instead.
 
The rest of the arguments have same semantics as in `sp-pair'.
 
If the pair is not defined globally, ACTIONS defaults to (wrap
insert) instead of (:add) (which inherits global settings)
 
The pairs are uniquely identified by the opening delimiter.  If you
replace the closing one with a different string in the local
definition, this will override the global closing delimiter.
 
The list arguments can optionally be of form starting with
":add" or ":rem" when these mean "add to the global list"
and "remove from the global list" respectively.  Otherwise,
the global list is replaced.  If you wish to both add and remove
things with single call, use "((:add ...) (:rem ...))" as an
argument.  Therefore,
 
  :when '(:add my-test)
 
would mean "use the global settings for this pair, but also this
additional test". If no value is provided for list arguments,
they default to "(:add)" which means they inherit the list from
the global definition.
 
To disable a pair in a major mode, simply set its actions set to
nil. This will ensure the pair is not even loaded when the mode is
activated.
 
If WRAP is non-nil, the binding is added into major mode keymap
called "foo-mode-map".  If the mode does not follow this
convention, you will need to bind the function manually (see
`sp-pair' to how the function is named for each particular pair).
The bindings are not added into `smartparens-mode-map' to prevent
clashes between different modes.
 
BIND is equivalent to WRAP.  It is a legacy setting and will be
removed soon.
 
The binding for INSERT follows the same convention as BIND.  See
`sp-pair' for more info.
 
You can provide a function SKIP-MATCH, that will take three
arguments: the currently matched delimiter, beginning of match
and end of match.  If this function returns true, the
`sp-get-paired-expression' matcher will ignore this match.  You
can use this to skip over expressions that serve multiple
functions, such as if/end pair or unary if in Ruby or * in
markdown when it signifies list item instead of emphasis.  In
addition, there is a global per major-mode option, see
`sp-navigate-skip-match'.
 
(fn MODES OPEN CLOSE &key TRIGGER TRIGGER-WRAP (ACTIONS \='(:add)) (WHEN \='(:add)) (UNLESS \='(:add)) (PRE-HANDLERS \='(:add)) (POST-HANDLERS \='(:add)) WRAP BIND INSERT PREFIX SUFFIX SKIP-MATCH)
(defalias 'sp-local-pair #[899 "\301\302\"A@\301\303\"A@\301\304\"\206\305A@\301\306\"\206\307A@\301\310\"\206(\311A@\301\312\"\2063\313A@\301\314\"\206>\315A@\301\316\"A@\301    \317\"A@\301\n\320\"A@\301 \321\"A@\301\f\322\"A@\301 \323\"A@ \211\203\227\211@\324>\203\211AA\262\202l\325>A@\203\216\326\262\202l\327\330@\"\210\202l\210\n\331=\203\332C!\211\203\n\211@\211\236\211\326A\333\203\323@\334\335\"\232\204\307\211B\262\210\211T\262A\262\202\262\266\211\237\262\241\266\336 \333\203@r\211q\210\337!\203\364\340!\210)\210\211T\262A\262\202\337\266A\266\202\202\244\210\202\367\332C!\211\203\366\211@\326\341\335#\262\203.\341\342#\210\203:\341\302#\210\203F\341\303#\210\203Q\341\321#\210\203\\\341\322#\210\203g\341\323#\210\343\344\"\204y \345\232\203y\346\262\341\304#\210\341\306#\210\341\310#\210\341\312 #\210\341\314\f#\210\347\"\210\350\351!\352P!\211\203\355\353!\205\264\211J\211\203\354\n\204\302    \203\327\354\355 \206\314\f!\356\357\360\361DF#\210\203\354\354\362 !\356\326\363\364DF#\210\210\266A\266\202\202\210\365\332C!!\210\207" [sp-pairs plist-member :trigger :trigger-wrap :actions (nil (:add)) :when (nil (:add)) :unless (nil (:add)) :pre-handlers (nil (:add)) :post-handlers (nil (:add)) :wrap :bind :insert :prefix :suffix :skip-match (:trigger :trigger-wrap :actions :when :unless :pre-handlers :post-handlers :wrap :bind :insert :prefix :suffix :skip-match :allow-other-keys) :allow-other-keys nil error "Keyword argument %s not one of (:trigger :trigger-wrap :actions :when :unless :pre-handlers :post-handlers :wrap :bind :insert :prefix :suffix :skip-match)" :rem -flatten 0 plist-get :open buffer-list derived-mode-p sp--remove-local-pair plist-put :close sp-get-pair-definition t (:add) (wrap insert autoskip navigate) sp--update-pair-list intern symbol-name "-map" boundp define-key read-kbd-macro lambda (&optional arg) (interactive "P") sp-wrap-with-pair kbd (interactive) sp-insert-pair sp--update-local-pairs-everywhere] 30 (#$ . 97101)])
#@1716 Add a tag definition.
 
MODES is a mode or a list of modes where this tag should
activate.  It is impossible to define global tags.
 
TRIG is the trigger sequence.  It can be a string of any length.
If more triggers share a common prefix, the shortest trigger is
executed.
 
OPEN is the format of the opening tag.  This is inserted before
the active region.
 
CLOSE is the format of the closing tag.  This is inserted after
the active region.
 
Opening and closing tags can optionally contain the _ character.
 
If the opening tag contains the _ character, after you type the
trigger, the region is wrapped with "skeleton" tags and a
special tag editing mode is entered.  The text you now type is
substituted for the _ character in the opening tag.
 
If the closing tag contains the _ character, the text from the
opening pair is mirrored to the closing pair and substituted for
the _ character.
 
TRANSFORM is a function name (symbol) that is called to perform a
transformation of the opening tag text before this is inserted to
the closing tag.  For example, in html tag it might simply select
the name of the tag and cut off the tag attributes (like
class/style etc.).  Defaults to identity.
 
ACTIONS is a list of actions this tag should support. Currently,
only "wrap" action is supported.  Usually, you don't need to
specify this argument.
 
POST-HANDLERS is a list of functions that are called after the
tag is inserted.  If the tag does contain the _ character, these
functions are called after the tag editing mode is exited.  Each
function on this list should accept two arguments: the trigger
string and the action.
 
(fn MODES TRIG OPEN CLOSE &key (TRANSFORM \='identity) (ACTIONS \='(wrap insert)) POST-HANDLERS)
(defalias 'sp-local-tag #[1156 "\301\302\"\206\303A@\301\304\"\206\305A@\301\306\"A@\211\203E\211@\307>\203.\211AA\262\202\310>A@\203<\311\262\202\312\313@\"\210\202\210\314C!\211\205*\211@\211\236\311A\315\316\203\206\203\206@\203m\311\262\202z\317\320\"\232\203z\211\262\210\211T\262A\262\202Y\266\211\262\311\321\320#\262\321\322 #\210\321\323\f#\210\203\256\321\302\n#\210\203\272\321\304    #\210\203\305\321\306#\210\203\204\377\311A\316\203\364@\317\320\"\232\204\350\211B\262\210\211T\262A\262\202\323\266\211\237\262\241\210\202!\204 AB\241\210\202!\324\"\210\202!\203!CBB\266A\266\202\202K\262\207" [sp-tags plist-member :transform (nil identity) :actions (nil (wrap insert)) :post-handlers (:transform :actions :post-handlers :allow-other-keys) :allow-other-keys nil error "Keyword argument %s not one of (:transform :actions :post-handlers)" -flatten t 0 plist-get :trigger plist-put :open :close sp--update-pair] 22 (#$ . 102237)])
(byte-code "\300\301\302\303\304\305%\210\300\306\307\310\304\305%\210\300\311\312\313\304\305%\210\300\314\315\316\304\305%\210\300\317\320\321\304\305%\207" [custom-declare-face sp-pair-overlay-face ((t (:inherit highlight))) "The face used to highlight pair overlays." :group smartparens sp-wrap-overlay-face ((t (:inherit sp-pair-overlay-face))) "The face used to highlight wrap overlays.\n\nWhen the user wraps a region with multi-character pair a special\ninsertion mode is entered.  This face is used for the overlays\nwhere the possible wrappings are displayed.\n\nThe opening and closing delimiters use\n`sp-wrap-overlay-opening-pair' and `sp-wrap-overlay-closing-pair'\nrespectively." sp-wrap-overlay-opening-pair ((t (:inherit sp-wrap-overlay-face :foreground "green"))) "The face used to highlight opening pairs for wrapping.\n\nSee `sp-wrap-overlay-face'." sp-wrap-overlay-closing-pair ((t (:inherit sp-wrap-overlay-face :foreground "red"))) "The face used to highlight closing pairs for wrapping.\n\nSee `sp-wrap-overlay-face'." sp-wrap-tag-overlay-face ((t (:inherit sp-pair-overlay-face))) "The face used to highlight wrap tag overlays."] 6)
#@267 List of overlays used for tracking inserted pairs.
 
When a pair is inserted, an overlay is created over it.  When the
user starts typing the closing pair we will not insert it again.
If user leaves the overlay, it is canceled and the insertion
works again as usual.
(defvar sp-pair-overlay-list nil (#$ . 106172))
(make-variable-buffer-local 'sp-pair-overlay-list)
#@29 Cons pair of wrap overlays.
(defvar sp-wrap-overlays nil (#$ . 106543))
(make-variable-buffer-local 'sp-wrap-overlays)
#@33 Cons pair of tag wrap overlays.
(defvar sp-wrap-tag-overlays nil (#$ . 106668))
(make-variable-buffer-local 'sp-wrap-tag-overlays)
#@31 Keymap for the pair overlays.
(defvar sp-pair-overlay-keymap (make-sparse-keymap) (#$ . 106805))
(define-key sp-pair-overlay-keymap "" '(menu-item nil sp-remove-active-pair-overlay :filter (lambda (cmd) (unless (bound-and-true-p company-my-keymap) cmd))))
#@31 Keymap for the wrap overlays.
(defvar sp-wrap-overlay-keymap (make-sparse-keymap) (#$ . 107068))
(define-key sp-wrap-overlay-keymap "" 'sp-wrap-cancel)
#@199 Wrapper around `overlays-at' to get smartparens overlays.
 
POS is the same as for `overlays-at'.
 
Smartparens functions must use this function instead of
`overlays-at' directly.
 
(fn &optional POS)
(defalias 'sp--overlays-at #[256 "\300\301\206`!\302\203'@\303\304\"\203\211B\262\210\211T\262A\262\202    \266\211\237\207" [nil overlays-at 0 overlay-get type] 8 (#$ . 107228)])
#@48 Return t if point is in OVERLAY.
 
(fn OVERLAY)
(defalias 'sp--point-in-overlay-p #[257 "`\300!W\205 `\301!V\207" [overlay-end overlay-start] 4 (#$ . 107625)])
#@46 Compute the length of OVERLAY.
 
(fn OVERLAY)
(defalias 'sp--get-overlay-length #[257 "\300!\301!Z\207" [overlay-end overlay-start] 4 (#$ . 107793)])
#@165 Get active overlay.
 
Active overlay is the shortest overlay at point.  Optional
argument TYPE restrict overlays to only those with given type.
 
(fn &optional TYPE)
(defalias 'sp--get-active-overlay #[256 "\300 \2032\301\302\203*@\303\304\"=\203\211B\262\210\211T\262A\262\202    \266\211\237\262\262\211\204:\301\202\216\211A\204D\211@\202\216\211\211\203y\211@A\302\203q@\305!\305!W\203b\211\202c\262\210\211T\262A\262\202N\266\211\262\202\214\301\211\305!\305!W\203\211\211\202\212\266\202\262\207" [sp--overlays-at nil 0 overlay-get type sp--get-overlay-length] 10 (#$ . 107951)])
#@242 Create an overlay over the currently inserted pair.
 
This overlay is used for tracking the position of the point and
marks the active expression.  START and END are the boundaries of
the overlay, ID is the id of the pair.
 
(fn START END ID)
(defalias 'sp--pair-overlay-create #[771 "\302\"\303\304\305#\210\303\306#\210\303\307#\210\303\310\311#\210\211    B\312 \210\313\314\315\316\317$\207" [sp-pair-overlay-keymap sp-pair-overlay-list make-overlay overlay-put priority 99 keymap pair-id type pair sp--pair-overlay-fix-highlight add-hook post-command-hook sp--pair-overlay-post-command-handler nil t] 9 (#$ . 108587)])
#@29 Cancel the active wrapping.
(defalias 'sp-wrap-cancel #[0 "\303\216\211\211A\262\242\304\305!\204\306 \203\307\310!\311!\"\210\311!\310!|\210    \nV\205>\312\311!\310!\"\311!b\210\211c\262\266\203\262)\207" [sp-wrap-overlays sp-wrap-point sp-wrap-mark #[0 "\300 \207" [sp-wrap--clean-overlays] 1] called-interactively-p any sp--delete-selection-p kill-region overlay-end overlay-start delete-and-extract-region] 8 (#$ . 109221) nil])
#@23 Delete wrap overlays.
(defalias 'sp-wrap--clean-overlays #[0 "\211A\262\242\301!\210\301!\210\302\211\207" [sp-wrap-overlays delete-overlay nil] 5 (#$ . 109676)])
#@88 Fix highlighting of the pair overlays.
 
Only the active overlay should be highlighted.
(defalias 'sp--pair-overlay-fix-highlight #[0 "\303 \304\203@\305\306\307#\266\211T\262A\262\202\266\310 \211\205'\311\312\"\203M\211\313\267\202I\205W\305\306\314#\202W    \205W\305\306\315#\202W\307\202W\n\205W\305\n@\306\314#\207" [sp-highlight-wrap-tag-overlay sp-highlight-pair-overlay sp-wrap-tag-overlays sp--overlays-at 0 overlay-put face nil sp--get-active-overlay overlay-get type #s(hash-table size 2 test eq rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (wrap-tag 49 pair 61)) sp-wrap-tag-overlay-face sp-pair-overlay-face] 7 (#$ . 109852)])
#@232 Remove all invalid pair overlays.
 
An invalid overlay is one that doesn't have point inside it or
is of zero length.
 
Also remove all pair overlays if point moved backwards and
`sp-cancel-autoskip-on-backward-movement' is non-nil.
(defalias 'sp--pair-overlay-post-command-handler #[0 "\203 `    W\203 \n\211\203\211@\303!\210A\266\202\202 \210\202`\304\n\305\203H@\306!\2037\307!\305V\204<\211B\262\210\211T\262A\262\202#\266\211\237\262\211\203_\211@\303!\210A\266\202\202N\210\n\205g`\211\207" [sp-cancel-autoskip-on-backward-movement sp-previous-point sp-pair-overlay-list sp--remove-overlay nil 0 sp--point-in-overlay-p sp--get-overlay-length] 6 (#$ . 110533)])
#@162 Reset memoization as a safety precaution.
 
IGNORED is a dummy argument used to eat up arguments passed from
the hook where this is executed.
 
(fn &rest IGNORED)
(defalias 'sp--reset-memoization #[128 "\302!    >\204\303\304\300D\"\210\211\305\306I\266\302!    >\204%\303\304\300D\"\210\211\307\306I\207" [sp-state cl-struct-sp-state-tags type-of signal wrong-type-argument 3 nil 4] 5 (#$ . 111233)])
#@63 Deactivate the active overlay.  See `sp--get-active-overlay'.
(defalias 'sp-remove-active-pair-overlay #[0 "\300\301!\211\205\n\302!\207" [sp--get-active-overlay pair sp--remove-overlay] 3 (#$ . 111643) nil])
#@31 Remove OVERLAY.
 
(fn OVERLAY)
(defalias 'sp--remove-overlay #[257 "\302\303\203 @\211\232\204\211B\262\210\211T\262A\262\202\266\211\237\262\211\2043\304\305\306\307#\210\310\311!\210\312 \207" [sp-pair-overlay-list sp-previous-point nil 0 remove-hook post-command-hook sp--pair-overlay-post-command-handler t -1 delete-overlay sp--pair-overlay-fix-highlight] 8 (#$ . 111860)])
#@59 Replace text inside overlay O with STRING.
 
(fn O STRING)
(defalias 'sp--replace-overlay-text #[514 "\212\300!b\210\211c\210`\301!|)\207" [overlay-start overlay-end] 5 (#$ . 112264)])
#@36 Get text inside overlay O.
 
(fn O)
(defalias 'sp--get-overlay-text #[257 "\300!\301!{\207" [overlay-start overlay-end] 4 (#$ . 112456)])
#@87 Return t if point is inside string or comment, nil otherwise.
 
(fn ID ACTION CONTEXT)
(defalias 'sp-in-string-p #[771 "\211\300=\207" [string] 5 (#$ . 112601)])
#@198 Special string test for quotes.
 
On insert action, test the string context one character back from
point.  Return nil at `bobp'.
 
On escape action use the value of CONTEXT.
 
(fn ID ACTION CONTEXT)
(defalias 'sp-in-string-quotes-p #[771 "\300\267\202o?\205\212\301u\210\302 )\207\211\303=\207\304\207" [#s(hash-table size 2 test eq rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (insert 6 escape 19)) -1 sp-point-in-string string nil] 5 (#$ . 112769)])
#@85 Return t if point is inside elisp docstring, nil otherwise.
 
(fn ID ACTION CONTEXT)
(defalias 'sp-in-docstring-p #[771 "\211\301=\205-\212\302 @\211\205*\211b\210\3031\304\305!0\202 \210\202!\210\306\307\310!)\262\262)\207" [inhibit-changing-match-data string sp-get-quoted-string-bounds (error) backward-sexp 3 "\\(?:-lambda\\|cl-def\\(?:macro\\|un\\)\\|def\\(?:macro\\*?\\|un\\*?\\)\\|lambda\\)" t looking-at] 7 (#$ . 113241)])
#@74 Return t if point is inside code, nil otherwise.
 
(fn ID ACTION CONTEXT)
(defalias 'sp-in-code-p #[771 "\211\300=\207" [code] 5 (#$ . 113687)])
#@77 Return t if point is inside comment, nil otherwise.
 
(fn ID ACTION CONTEXT)
(defalias 'sp-in-comment-p #[771 "\211\300=\207" [comment] 5 (#$ . 113837)])
#@74 Return t if point is inside code, nil otherwise.
 
(fn ID ACTION CONTEXT)
(defalias 'sp-in-math-p #[771 "\300\301!\205\301 \207" [functionp texmathp] 5 (#$ . 113996)])
#@162 Return t if point is followed by optional white spaces and end of line, nil otherwise.
This predicate is only tested on "insert" action.
 
(fn ID ACTION CONTEXT)
(defalias 'sp-point-before-eol-p #[771 "\300=\205    \301\302!\207" [insert sp--looking-at-p "\\s-*$"] 5 (#$ . 114172)])
#@161 Return t if point follows beginning of line and possibly white spaces, nil otherwise.
This predicate is only tested on "insert" action.
 
(fn ID ACTION CONTEXT)
(defalias 'sp-point-after-bol-p #[771 "\300=\205 \301\302\303!P!\207" [insert sp--looking-back-p "^\\s-*" regexp-quote] 7 (#$ . 114460)])
#@137 Return t if point is at the beginning of line, nil otherwise.
This predicate is only tested on "insert" action.
 
(fn ID ACTION CONTEXT)
(defalias 'sp-point-at-bol-p #[771 "\300=\205 \301\302\303!P!\207" [insert sp--looking-back-p "^" regexp-quote] 7 (#$ . 114768)])
#@133 Return t if point is followed by a symbol, nil otherwise.
This predicate is only tested on "insert" action.
 
(fn ID ACTION CONTEXT)
(defalias 'sp-point-before-symbol-p #[771 "\300=\205    \301\302!\207" [insert sp--looking-at-p "\\s_"] 5 (#$ . 115044)])
#@131 Return t if point is followed by a word, nil otherwise.
This predicate is only tested on "insert" action.
 
(fn ID ACTION CONTEXT)
(defalias 'sp-point-before-word-p #[771 "\300=\205    \301\302!\207" [insert sp--looking-at-p "\\sw\\|\\s_"] 5 (#$ . 115304)])
#@125 Return t if point is after a word, nil otherwise.
This predicate is only tested on "insert" action.
 
(fn ID ACTION CONTEXT)
(defalias 'sp-point-after-word-p #[771 "\300>\205 \301\302\303!P!\207" [(insert escape) sp--looking-back-p "\\(\\sw\\|\\s_\\)" regexp-quote] 7 (#$ . 115567)])
#@127 Return t if point is followed by ID, nil otherwise.
This predicate is only tested on "insert" action.
 
(fn ID ACTION CONTEXT)
(defalias 'sp-point-before-same-p #[771 "\300=\205 \301\302!!\207" [insert sp--looking-at-p regexp-quote] 6 (#$ . 115860)])
#@79 Return t if point is on an empty line, nil otherwise.
 
(fn ID ACTION CONTEXT)
(defalias 'sp-point-in-empty-line-p #[771 "\300\301!\205 \302\303\304!P!\207" [sp--looking-at-p "\\s-*$" sp--looking-back-p "^\\s-*" regexp-quote] 7 (#$ . 116119)])
#@85 Return non-nil if character before point is escaped with \.
 
(fn ID ACTION CONTEXT)
(defalias 'sp-char-escaped-p #[771 "\300=\205\212\301u\210\302\303\304\")\207" [insert -1 looking-back "\\\\" 1] 6 (#$ . 116370)])
#@300 Return t if pair ID can perform ACTION.
 
If ACTION is a list, return t if at least one action from the
list can be performed.
 
If USE-INSIDE-STRING is non-nil, use value of
`sp-point-inside-string' instead of testing with
`sp-point-in-string-or-comment'.
 
(fn ID ACTION &optional USE-INSIDE-STRING)
(defalias 'sp--do-action-p #[770 "\301C!\262\302\303\"\302\304\"\302\305\"\203\202\306 \211\203$\307\202.\310 \203-\311\202.\312\313\211\203\303\211\204\303@\262>\205\271\203\200\313\314\315\203x\203x@\203b\313\262\202l\211\n#\262\210\211T\262A\262\202N\266\211\262\205\271?\206\271\313\314\315\203\263\203\263@\203\235\313\262\202\247\211\n#\262\210\211T\262A\262\202\211\266\211\262?\262A\262    \2020\207" [sp-point-inside-string -flatten sp-get-pair :actions :when :unless sp-point-in-string string sp-point-in-comment comment code nil t 0] 19 (#$ . 116595)])
#@71 Return the context constant.  TYPE is type of the handler.
 
(fn TYPE)
(defalias 'sp--get-handler-context #[257 "\211\300\267\202\212o\204\301u\210\302 )\202\302 \202\303\211\203\"\304\202#\305\207" [#s(hash-table size 2 test eql rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (:pre-handlers 6 :post-handlers 20)) -1 sp-point-in-string-or-comment nil string code] 3 (#$ . 117541)])
#@172 Return the context of POINT.
 
If the optional arguments IN-STRING or IN-COMMENT non-nil, their
value is used instead of a test.
 
(fn &optional POINT IN-STRING IN-COMMENT)
(defalias 'sp--get-context #[768 "\212\206`b\210\204\300 \203\301\202#\211\204\302 \203\"\303\202#\304)\207" [sp-point-in-string string sp-point-in-comment comment code] 4 (#$ . 117948)])
#@80 Parse the insertion specification FUN and return a form to evaluate.
 
(fn FUN)
(defalias 'sp--parse-insertion-spec #[257 "\300C\300\301\300\302\303\304\305\306!\307\"\310\311%\262\312\313!r\211q\210\302\314\315\305\306!\316\"\317$\216c\210eb\210\320\321\300\322#\203\342\323\314!\324\232\203\233\212\325u\210h)\326=\203X\327\330`\317Z\"\324PD!\210\202\334\327\330`S\"D!\210`\320\331\300\322#\210`S\330\"\211\332\232\203y\333\202\211\211\314H\334\232\205\211\335\336\301\300O!D\211\203\226\n\242B\240\210\266\202\334\323\314!\337\232\203\334\212\325u\210h)\326=\203\276\327\330`\317Z\"\337PD!\210\202\334\327\330`S\"D!\210\340\242B\240\210g\341=\203\334\301u\210\342\262`\262\202-\327\330d\"D!\210*\210\242\237\211\300\322\203\211\203@\211\340=\203    \300\262\202\211B\262A\262\210\202\363\237D\266\203\343@A@\205'A\"\344\2036\345\"\2027B\266\203\262\207" [nil 1 make-byte-code 257 "\211A@\301\232?\205\300\300\242B\240\207" vconcat vector [""] 4 "\n\n(fn WHAT)" generate-new-buffer " *temp*" 0 "\301\300!\205    \302\300!\207" [buffer-name kill-buffer] 2 re-search-forward "\\(|\\|\\[\\)" t match-string "[" -1 92 insert buffer-substring-no-properties "]" "i" (indent-according-to-mode) 100 delete-char string-to-number "|" save-excursion 124 (indent-according-to-mode) -concat progn -snoc] 14 (#$ . 118326)])
#@241 Run a function or insertion.
 
If FUN is a function, call it with `funcall' with ID, ACTION and
CONTEXT as arguments.
 
If FUN is a string, interpret it as "insertion specification",
see `sp-pair' for description.
 
(fn FUN ID ACTION CONTEXT)
(defalias 'sp--run-function-or-insertion #[1028 "\300!\203\f#\207;\205\301\302!!\207" [functionp eval sp--parse-insertion-spec] 8 (#$ . 119715)])
#@60 Special variable holding context during handler execution.
(defvar sp-handler-context nil (#$ . 120117))
#@285 Run all the hooks for pair ID of type TYPE on action ACTION.
 
CONTEXT-VALUES is a plist with arbitrary values (depending on the
action).  A dynamic varable `sp-handler-context' will be bound to
this value during execution of the handler.
 
(fn ID TYPE ACTION &optional CONTEXT-VALUES)
(defalias 'sp--run-hook-with-args #[1027 "\3011A\302\"\303!\2035\304\205/@\305\n    $\266\211T\262A\262\202\266\202)\202=\306\307$\266\2020\207\210\310\207" [sp-handler-context (error) sp-get-pair sp--get-handler-context 0 sp--run-function-or-insertion run-hook-with-args tag-hook nil] 14 (#$ . 120229)])
#@55 Handle the situation after some command has executed.
(defalias 'sp--post-command-hook-handler #[0 "\2036\306\307 \203\310 \210\31112    \205.\n\203:\n@\312!\313!`\211 W\2045\211V\2045\211W\2038\314 \210\266\n\203@`\315\f! >\204O\316\317\304\fD\"\210\f\320H\242\321=\203r\315\f! >\204g\316\317\304\fD\"\210\f\320H\211\322\240\266\202K\315\f! >\204\201\316\317\304\fD\"\210\f\320H\242\322=\203K\315\f! >\204\231\316\317\304\fD\"\210\f\320HA\323\324\"\211\325\203.@\211@A\326\306\327\325\203\330\203\330@\203\306\306\262\202\314,=\262\210\211T\262A\262\202\262\266\211\262!\204\326\306\327\325\203\203@\203\372\306\262\202\330-!\232\262\210\211T\262A\262\202\346\266\211\262!\203!\331\332\333\334!$\210\266\211T\262A\262\202\243\266\315\f! >\204?\316\317\304\fD\"\210\f\211\320\306I\266\306.\266/\335=\204\3700\203\3700@0A\323\336\"\323\337\"\203\363\326\306\327\325\203\303\203\303@\203\203\306\262\202\267\340!\203\225\211;\204\225,=\202\265\211;\203\243\330-!\232\202\265\3411\263\211 \332\333\334!#0\202\265\210\306\262\210\211T\262A\262\202o\266\211\262!\203\363\342\343\332#\210\211c\210\211G\206\333\320[u\210\344`G\\#\210\342\334\332#\210.\345/\266\3060/\335=\203\306/\346 \204\307 \204\306\2111/2\205.,3\235\203$\347 \202.,\350=?\205.\351 0\2024\210\306)\207\307 \203>\310 \210\3521`    \205^\n\203j\n@\312!\313!`\211 W\204e\211V\204e\211W\203h\314 \210\266\n\203p`\315\f! >\204\316\317\304\fD\"\210\f\320H\242\321=\203\242\315\f! >\204\227\316\317\304\fD\"\210\f\320H\211\322\240\266\202{\315\f! >\204\261\316\317\304\fD\"\210\f\320H\242\322=\203{\315\f! >\204\311\316\317\304\fD\"\210\f\320HA\323\324\"\211\325\203^@\211@A\326\306\327\325\203\203@\203\366\306\262\202\374,=\262\210\211T\262A\262\202\342\266\211\262!\204G\326\306\327\325\203>\203>@\203*\306\262\2022\330-!\232\262\210\211T\262A\262\202\266\211\262!\203Q\331\332\333\334!$\210\266\211T\262A\262\202\323\266\315\f! >\204o\316\317\304\fD\"\210\f\211\320\306I\266\306.\266/\335=\204(0\203(0@0A\323\336\"\323\337\"\203#\326\306\327\325\203\363\203\363@\203\263\306\262\202\347\340!\203\305\211;\204\305,=\202\345\211;\203\323\330-!\232\202\345\3531\343\211 \332\333\334!#0\202\345\210\306\262\210\211T\262A\262\202\237\266\211\262!\203#\342\343\332#\210\211c\210\211G\206 \320[u\210\344`G\\#\210\342\334\332#\210.\345/\266\3060/\335=\2032\306/\346 \204B\307 \204B\306\2111/2\205^,3\235\203T\347 \202^,\350=?\205^\351 0\207\210\306\207" [case-fold-search smartparens-mode sp-wrap-overlays sp-previous-point sp-state cl-struct-sp-state-tags nil sp--special-self-insert-command-p sp--post-self-insert-hook-handler (error) overlay-start overlay-end sp-wrap-cancel type-of signal wrong-type-argument 1 :next :this sp-get-pair :post-handlers-cond 0 ---truthy\? t single-key-description sp--run-function-or-insertion insert sp--get-handler-context :post-handlers sp-insert-pair-delayed :when-cond :close commandp (error) sp--run-hook-with-args :pre-handlers sp--pair-overlay-create sp-insert-pair sp--self-insert-command-p sp-show--pair-enc-function sp-highlight-current-sexp sp-show--pair-delete-enc-overlays (error) (error) this-command last-command-event sp-last-inserted-pair sp-last-operation sp-delayed-pair sp-last-wrapped-region show-smartparens-mode sp-show-enclosing-pair-commands] 17 (#$ . 120850)])
#@166 Use ACTION as a flag to evaluating FORMS.
 
If ACTION is nil, evaluate FORMS and set it to the value of the
last form; otherwise do nothing.
 
(fn ACTION &rest FORMS)
(defalias 'sp--setaction '(macro . #[385 "\300\301\302BEE\207" [unless setq progn] 8 (#$ . 124438)]))
(put 'sp--setaction 'edebug-form-spec '(form body))
#@38 Handler for `post-self-insert-hook'.
(defalias 'sp--post-self-insert-hook-handler #[0 "\3061\205    \203\222\307\3102\216\307\311 \203D\3121\"\313 0\202C\314\315!!\210\n\316=\2049\317 \210\n\210\nA\320 \210\321 !\210\322\310\307\"\262\210\f\203M\323 \202\213\211\204g\324\307\325\"A\211\205c\3102c\326\327\"0\262\262 \204s\211\204s\330 \262\211\204{\331 \262\211\204\202\332 \210\211?\205\213\333\211\2620)\202\3102\307\311 \203\310\3341\246\313 0\202\307\314\315!!\210\n\316=\204\275\317 \210\n\210\nA\320 \210\321 !\210\322\310\307\"\262\210\f\203\321\323 \202\211\204\353\324\307\325\"A\211\205\347\3102\347\326\335\"0\262\262 \204\367\211\204\367\330 \262\211\204\377\331 \262\211\204\332 \210\211?\205\333\211\26200\207\314\336\"\210\307\207" [smartparens-mode case-fold-search buffer-undo-list sp-buffer-modified-p sp-wrap-overlays overwrite-mode (debug error) nil done region-active-p (user-error) sp-wrap--initialize message error-message-string t sp--undo-pop-to-last-insertion-node undo-boundary restore-buffer-modified-p throw sp-wrap sp--all-pairs-to-insert wrap -each #[257 "\300\301\"\300\302\"\303B!\211\205\304\305\"\262\207" [plist-get :open :close sp--wrap-repeat-last throw done] 7 "\n\n(fn INPUT0)"] sp-insert-pair sp-skip-closing-pair sp-escape-open-delimiter sp-self-insert (user-error) #[257 "\300\301\"\300\302\"\303B!\211\205\304\305\"\262\207" [plist-get :open :close sp--wrap-repeat-last throw done] 7 "\n\n(fn INPUT0)"] "sp--post-self-insert-hook-handler: %S" sp-last-operation] 5 (#$ . 124766)])
(add-hook 'post-self-insert-hook 'sp--post-self-insert-hook-handler)
#@58 Save some of the buffer state before `pre-command-hook'.
(defalias 'sp--save-pre-command-state #[0 "\303 `\304 \211\207" [sp-point-inside-string sp-pre-command-point sp-buffer-modified-p sp-point-in-string buffer-modified-p] 2 (#$ . 126445)])
(add-hook 'pre-command-hook 'sp--save-pre-command-state)
#@182 Get all non-stringlike pairs.
 
Return all pairs that are recognized in this `major-mode' and do
not have same opening and closing delimiter.  This is used for
navigation functions.
(defalias 'sp--get-pair-list #[0 "\301\302\203\"@\211@A\230\204\211B\262\210\211T\262A\262\202\266\211\237\207" [sp-pair-list nil 0] 6 (#$ . 126755)])
#@133 Get all string-like pairs.
 
Return all pairs that are recognized in this `major-mode' that
have same opening and closing delimiter.
(defalias 'sp--get-stringlike-list #[0 "\301\302\203\"@\211@A\230\203\211B\262\210\211T\262A\262\202\266\211\237\207" [sp-pair-list nil 0] 6 (#$ . 127109)])
#@218 Get all allowed non string-like pairs.
 
Return all pairs that are recognized in this `major-mode', do not
have same opening and closing delimiter and are allowed in the
current context.  See also `sp--get-pair-list'.
(defalias 'sp--get-allowed-pair-list #[0 "\301\302\203*@\303@\304\"\203\211@A\232\204\211B\262\210\211T\262A\262\202\266\211\237\207" [sp-pair-list nil 0 sp--do-action-p navigate] 7 (#$ . 127420)])
#@180 Get all allowed string-like pairs.
 
Return all pairs that are recognized in this `major-mode',
have the same opening and closing delimiter and are allowed in
the current context.
(defalias 'sp--get-allowed-stringlike-list #[0 "\301\302\203*@\303@\304\"\203\211@A\232\203\211B\262\210\211T\262A\262\202\266\211\237\207" [sp-pair-list nil 0 sp--do-action-p navigate] 7 (#$ . 127860)])
#@122 Return all pairs that are recognized in this `major-mode' and
are allowed in the current context.
 
(fn &optional ACTION)
(defalias 'sp--get-pair-list-context #[256 "\211\206\301\262\302\303\203*@\304@\"\203\211B\262\210\211T\262A\262\202\n\266\211\237\207" [sp-pair-list insert nil 0 sp--do-action-p] 8 (#$ . 128268)])
#@61 Return the list of all pairs that can be used for wrapping.
(defalias 'sp--get-pair-list-wrap #[0 "\301\302\203\"@\303@\304\"\203\211B\262\210\211T\262A\262\202\266\211\237\207" [sp-pair-list nil 0 sp--do-action-p wrap] 7 (#$ . 128612)])
#@114 Wraps regexp with start and end boundary conditions to avoid
matching symbols in symbols.
 
(fn STRING START END)
(defalias 'sp--wrap-regexp #[771 "\300\205\301\205\f\302\303\260\207" ["\\(?:" "\\<" "\\>" "\\)"] 8 (#$ . 128872)])
#@135 Generates an optimized regexp matching all string, but with
extra boundary conditions depending on parens.
 
(fn PARENS &rest STRINGS)
(defalias 'sp--regexp-for-group #[385 "@A@\300\301!#\207" [sp--wrap-regexp regexp-opt] 8 (#$ . 129115)])
#@139 Like regexp-opt, but with extra boundary conditions to ensure
that the strings are not matched in-symbol.
 
(fn STRINGS &optional IGNORED)
(defalias 'sp--strict-regexp-opt #[513 "\203<\300 p\301\302\303\304\305\"\306\"\307$\216\310\311\300 !\312\313\314#\210\211\262!\210\315\316\"\317\320\321#\322\323Q\262\262\262)\207\324\207" [syntax-table make-byte-code 0 "r\301q\210\302\300!)\207" vconcat vector [set-syntax-table] 2 set-syntax-table make-syntax-table modify-syntax-entry 39 "." -group-by #[257 "\301\302\303\304#)\266\203\205\303\305\302\303\304#)\266\203\205\"\303D\207" [inhibit-changing-match-data "\\`\\<" nil t string-match "\\>\\'"] 9 "\n\n(fn STRING)"] mapconcat #[257 "\300\301\"\207" [apply sp--regexp-for-group] 4 "\n\n(fn G)"] "\\|" "\\(?:" "\\)" "^\\<$"] 11 (#$ . 129366)])
#@89 Like regexp-quote, but make sure that the string is not
matched in-symbol.
 
(fn STRING)
(defalias 'sp--strict-regexp-quote #[257 "\301\302!\303\304\305\306#)\266\203\307\304\305\306#)\266\203#\207" [inhibit-changing-match-data sp--wrap-regexp regexp-quote "\\`\\<" nil t string-match "\\>\\'"] 11 (#$ . 130194)])
#@90 Return regexp matching any opening pair.
 
(fn &optional (PAIR-LIST (sp--get-pair-list)))
(defalias 'sp--get-opening-regexp #[128 "\211\203 \211A\262\242\202\300 \203\301\302\303GTD\"\210\304\305\306\"!\207" [sp--get-pair-list signal wrong-number-of-arguments sp--get-opening-regexp sp--strict-regexp-opt mapcar #[257 "\211@\207" [] 2 "\n\n(fn IT)"]] 6 (#$ . 130524)])
#@90 Return regexp matching any closing pair.
 
(fn &optional (PAIR-LIST (sp--get-pair-list)))
(defalias 'sp--get-closing-regexp #[128 "\211\203 \211A\262\242\202\300 \203\301\302\303GTD\"\210\304\305\306\"!\207" [sp--get-pair-list signal wrong-number-of-arguments sp--get-closing-regexp sp--strict-regexp-opt mapcar #[257 "\211A\207" [] 2 "\n\n(fn IT)"]] 6 (#$ . 130908)])
#@154 Return regexp matching any opening or closing
delimiter for any pair allowed in current context.
 
(fn &optional (PAIR-LIST (sp--get-allowed-pair-list)))
(defalias 'sp--get-allowed-regexp #[128 "\211\203 \211A\262\242\202\300 \203\301\302\303GTD\"\210\304\305\306\307\310\"\"!\207" [sp--get-allowed-pair-list signal wrong-number-of-arguments sp--get-allowed-regexp sp--strict-regexp-opt apply append mapcar #[257 "\211@AD\207" [] 3 "\n\n(fn IT)"]] 8 (#$ . 131293)])
#@188 Return a regexp matching any string-like delimiter.
 
In case PAIR-LIST is empty return a regexp that never matches
anything.
 
(fn &optional (PAIR-LIST (sp--get-allowed-stringlike-list)))
(defalias 'sp--get-stringlike-regexp #[128 "\211\203 \211A\262\242\202\300 \203\301\302\303GTD\"\210\211:\203*\304\305\306\"!\202+\307\207" [sp--get-allowed-stringlike-list signal wrong-number-of-arguments sp--get-stringlike-regexp regexp-opt mapcar #[257 "\211@\207" [] 2 "\n\n(fn IT)"] "^\\<$"] 6 (#$ . 131776)])
#@231 Return `sp-get-sexp' style plist about the last wrapped region.
 
Note: this function does not retrieve the actual value of
`sp-last-wrapped-region', it merely construct the plist from the
provided values.
 
(fn BEG END OPEN CLOSE)
(defalias 'sp--get-last-wraped-region #[1028 "\300 \300 \301\223\210\211\301\223\210\302\303\"\210\304\305\306\307    \310BBBBBBBB\207" [make-marker nil set-marker-insertion-type t :beg :end :op :cl (:prefix "")] 15 (#$ . 132297)])
#@268 Return non-nil if we can wrap a region.
 
This is used in advices on various pre-command-hooks from
"selection deleting" modes to intercept their actions.
 
Also added to `self-insert-uses-region-functions' to prevent
`delete-selection-mode' from replacing the region.
(defalias 'sp-wrap--can-wrap-p #[0 "\301 \302!\303\304\305\306\203;\203;@\203\304\262\202/\307@\"\206-\307A\"\262\210\211T\262A\262\202\n\266\211\262!\207" [last-command-event sp--get-pair-list-wrap sp--single-key-description ---truthy\? nil t 0 string-prefix-p] 11 (#$ . 132773)])
#@121 Comparator for wrapping pair selection.
 
PROP specifies wrapping-end.  A and B are pairs to be compared.
 
(fn PROP A B)
(defalias 'sp--pair-to-wrap-comparator #[771 "\300\"G\300\"GW\207" [plist-get] 7 (#$ . 133355)])
#@205 Return information about possible wrapping pairs.
 
If optional PREFIX is non-nil, this is used to determine the
possible wrapping pairs instead of the text in the wrapping
overlay.
 
(fn &optional PREFIX)
(defalias 'sp--pair-to-wrap #[256 "\302\303\203$@\304\305\306\"\307\"\203\211B\262\210\211T\262A\262\202\266\211\237\262    @\2063\310!\302\303\203W@\311\305\306\"\"\203K\211B\262\210\211T\262A\262\2026\266\211\237\262\312\313\302\303\203\211@\311\305\314\"\206t\315\"\203}\211B\262\210\211T\262A\262\202c\266\211\237\262\"\316\"\302\303\203\272@\311\305\317\"\"\203\256\211B\262\210\211T\262A\262\202\230\266\211\237\262\320\321\"@\320\322\"@\306\317\323\324    \257\207" [sp-local-pairs sp-wrap-overlays nil 0 sp--do-action-p plist-get :open wrap sp--get-overlay-text string-prefix-p -map #[257 "\211\300\301\"\300\302\"\303!\262\304\301#\262\304\305#\262\207" [plist-get :open :trigger-wrap copy-sequence plist-put :open-real] 8 "\n\n(fn INPUT0)"] :trigger-wrap "" -concat :close -sort #[514 "\300\301#\207" [sp--pair-to-wrap-comparator :open] 6 "\n\n(fn IT OTHER)"] #[514 "\300\301#\207" [sp--pair-to-wrap-comparator :close] 6 "\n\n(fn IT OTHER)"] :opening :closing] 18 (#$ . 133583)])
#@22 Initialize wrapping.
(defalias 'sp-wrap--initialize #[0 "\205\366\306 \205\366`    Z`Z\307 \310 \311\211\311*\312\313\314\315\316!\317\"\320$\216\321\n`\"\322+\323d!\210\324\n!\324\307 !\203J\211\203J@@=\204\215\204a\211\204a\325\n\307 \"\204\215\326\327!\210\202\215\203j\211?\202k\211\203\211\326\330\242\203y\331\202z\332\242\203\203\331\202\204\332#\210\202\215\326\333!\210c\266,\210`\307 V\203\247\321`Z`\"\334 \210\211c\266\335\336 Z\336 \337\211\311%\335\340 \340 \337\211\311%B,-\203\321\341\342\343#\210\341\342\343#\210\341\344\345#\210\341\344\345#\210\341\346.#\210\341\347\350#\210`/\351!Tb\266\202\262\207" [sp-autowrap-region sp-pre-command-point sp-wrap-point sp-wrap-mark buffer-undo-list inhibit-read-only sp-wrap--can-wrap-p mark buffer-modified-p t make-byte-code 0 "\300?\205\301\302!\207" vconcat vector [restore-buffer-modified-p nil] 2 delete-and-extract-region -1 syntax-propertize sp-get-quoted-string-bounds sp-region-ok-p user-error "Mismatched sexp state: wrapping would break structure" "Mismatched string state: point %sin string, mark %sin string" "" "not " "Mismatched string state: point and mark are inside different strings" exchange-point-and-mark make-overlay region-beginning nil region-end overlay-put face sp-wrap-overlay-face priority 100 keymap type wrap overlay-start inhibit-modification-hooks syntax-propertize--done sp-wrap-overlays sp-highlight-wrap-overlay sp-wrap-overlay-keymap sp-previous-point] 10 (#$ . 134871)])
#@395 Finalize a successful wrapping.
 
WRAPPING-END specifies the wrapping end.  If we wrapped using
opening delimiter it is :open.  If we wrapped using closing
delimiter it is :close.  Position of point after wrapping depends
on this value---if :open, go where the wrapping was initalized,
if :close, go after the newly-formed sexp.
 
OPEN and CLOSE are the delimiters.
 
(fn WRAPPING-END OPEN CLOSE)
(defalias 'sp-wrap--finalize #[771 "\211\211A\262\242\306\"\210\306\"\210\307\310\311!\312!$\313\267\202\\ \203=\314\312!!\210\311!b\210\202\\\f V\203\\\314\311!!\210\312!b\210\202\\\314\311!!\210\312!b\210\315 \210\316\317\320#\266\203\207" [sp-wrap-overlays sp-last-operation sp-last-wrapped-region sp-wrap-respect-direction sp-wrap-point sp-wrap-mark sp--replace-overlay-text sp-wrap-region sp--get-last-wraped-region overlay-start overlay-end #s(hash-table size 2 test eq rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (:open 43 :close 81)) set-mark sp-wrap--clean-overlays sp--run-hook-with-args :post-handlers wrap] 12 (#$ . 136399)])
#@161 Try to wrap the active region with some pair.
 
This function is not ment to be used to wrap sexps with pairs
programatically.  Use `sp-wrap-with-pair' instead.
(defalias 'sp-wrap #[0 "\302 \303\304\"\303\305\"\303\306\"\303\307\"\211A\262\242\203U\303\304\"\303\305\"\303\310\"    \203<\311\312\313\314 \315##\210\316!\232\205N\317\304\206L#\266\203\262\202\203}G\320U\203}\303\304\"\303\305\"\316!\232\205v\317\305#\266\202\262\202\321 \207" [sp-wrap-overlays sp-wrap-show-possible-pairs sp--pair-to-wrap plist-get :open :close :opening :closing :open-real overlay-put after-string mapconcat #[257 "\203\301\302\303\"\304\305#\301\302\306\"\304\307#P\207\302\303\"\302\306\"P\207" [sp-highlight-wrap-overlay propertize plist-get :open face sp-wrap-overlay-opening-pair :close sp-wrap-overlay-closing-pair] 6 "\n\n(fn X)"] " " sp--get-overlay-text sp-wrap--finalize 1 sp-wrap-cancel] 19 (#$ . 137483)])
#@144 Escape instances of CHARS-TO-ESCAPE between BEG and END.
 
Return non-nil if at least one escaping was performed.
 
(fn CHARS-TO-ESCAPE BEG END)
(defalias 'sp--escape-region #[771 "\212b\210\301!\302 \303\223\303\304\305#\203$\305\262\212\306\224b\210c\210)\202 \266\202)\207" [sp-escape-char regexp-opt make-marker nil re-search-forward t 0] 10 (#$ . 138442)])
#@87 Escape quotes and special chars when a region is (re)wrapped.
 
(fn ID ACTION CONTEXT)
(defalias 'sp-escape-wrapped-region #[771 "\205\216\304>\205\216    \212\305\306\"b\210\307 \305\306\"`W\203-`\305\310\"W\203-\305\311\"\2027\312=\2057\305\n\313\"\262)\211\232\203P\314 D\305\306\"\305\310\"#\202\212\211\203p\314C\305\306\"\305\311\"G\\\305\310\"\305\315\"GZ#\202\212\314 D\305\306\"\305\311\"G\\\305\310\"\305\315\"GZ#\262\262\207" [sp-escape-wrapped-region sp-last-wrapped-region sp-handler-context sp-escape-char (wrap rewrap-sexp) plist-get :beg sp-get-string :end :op rewrap-sexp :parent sp--escape-region :cl] 12 (#$ . 138817)])
#@70 Escape quotes inserted via `sp-insert-pair'.
 
(fn ID ACTION CONTEXT)
(defalias 'sp-escape-quotes-after-insert #[771 "\205.\301=\205.\211\302=?\205.\303Hz\304=\205.\305\306\"\307D`GZ`G\\#\266\202\207" [sp-escape-quotes-after-insert insert string 0 34 sp-get-pair :close sp--escape-region] 10 (#$ . 139494)])
#@173 Check if the buffer is string-balanced.
 
A string-balanced buffer is one where where is no unclosed
string, that is, the string state at the end of the buffer is
"closed".
(defalias 'sp--buffer-is-string-balanced-p #[0 "\212\214~\210db\210\300 \211@\301W\206\3028\262*\207" [sp--syntax-ppss 0 3] 3 (#$ . 139821)])
#@228 Escape just inserted opening pair if `sp-insert-pair' was skipped.
 
This is useful for escaping of " inside strings when its pairing
is disabled.  This way, we can control autoescape and closing
delimiter insertion separately.
(defalias 'sp-escape-open-delimiter #[0 "\301\302\303!\304\"\211\205#\305\303\"\205#\205#\306 \205#\307C`GZ`#\207" [sp-point-inside-string plist-get sp--pair-to-insert escape :open sp--do-action-p sp--buffer-is-string-balanced-p sp--escape-region] 5 (#$ . 140146)])
#@74 Split the html tag TAG at the first space and return its name.
 
(fn TAG)
(defalias 'sp-match-sgml-tags #[257 "\300\301\"\211@\207" [split-string " "] 4 (#$ . 140653)])
(make-obsolete 'sp-match-sgml-tags "do not use this function as the tag system has been removed." "2015-02-07")
#@77 Return non-nil if C is a cons cell with numbers at `car' and `cdr'.
 
(fn C)
(defalias 'sp--is-number-cons #[257 "\211:\205\211@\247\205\211A\247\207" [] 2 (#$ . 140940)])
#@127 Pop all undo info until an insertion node (beg . end) is found.
 
This can potentially remove some undo important information.
(defalias 'sp--undo-pop-to-last-insertion-node #[0 "\205@\203\301@!?\205\211A\210\202\207" [buffer-undo-list sp--is-number-cons] 2 (#$ . 141122)])
#@98 Split the last insertion node in the `buffer-undo-list' to
include separate pair node.
 
(fn LEN)
(defalias 'sp--split-last-insertion-undo #[257 "\301 \210\205LA@@@A\302\211ZW\204/\210A\301 \210\203/@@\262A\262ZB\262ZB\262\303\302\302F\"\211\266\205\207" [buffer-undo-list sp--undo-pop-to-last-insertion-node nil append] 11 (#$ . 141414)])
#@575 Return all pairs that can be inserted at point.
 
Return nil if such pair does not exist.
 
Pairs inserted using a trigger have higher priority over pairs
without a trigger and only one or the other list is returned.
 
In other words, if any pair can be inserted using a trigger, only
pairs insertable by trigger are returned.
 
ACTION is an implementation detail.  Usually it has the value
'insert when we determine pairs to insert.  On repeated wrapping
however we pass the value 'wrap.  This will be refactored away in
the upcoming version.
 
(fn &optional LOOKING-FN ACTION)
(defalias 'sp--all-pairs-to-insert #[512 "\206\301\262\211\206\f\302\262\303\304\2033@\305\306\307\"\"\203'\211B\262\210\211T\262A\262\202\266\211\237\262\303\304\203f@\306\310\"\203Z\311\306\310\"!!\203Z\211B\262\210\211T\262A\262\202<\266\211\237\262\211\203v\310B\202\253\303\304\203\234@\311\306\307\"!!\203\220\211B\262\210\211T\262A\262\202y\266\211\237\262\211\205\251\307B\262\262\207" [sp-local-pairs sp--looking-back-p insert nil 0 sp--do-action-p plist-get :open :trigger sp--strict-regexp-quote] 13 (#$ . 141794)])
#@17 
 
(fn PROP A B)
(defalias 'sp--pair-to-insert-comparator #[771 "\300\267\202\301\302\"G\301\302\"GW\207\301\303\"G\301\303\"GW\2034\304\301\305\"\301\305\"\"\205H\306\301\305\"!\207\304\301\305\"\301\305\"\"\205G\306\301\305\"!?\207" [#s(hash-table size 1 test eq rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (:trigger 6)) plist-get :trigger :open string-prefix-p :close sp--looking-at-p] 8 (#$ . 142965)])
#@181 Return pair that can be inserted at point.
 
Return nil if such pair does not exist.
 
If more triggers or opening pairs are possible select the
shortest one.
 
(fn &optional ACTION)
(defalias 'sp--pair-to-insert #[256 "\300\301\"\211\205,\211A\262\242\211\205*\211\205(\302\303\304\305\306\307!\310\"\311\312%\"@\262\262\207" [sp--all-pairs-to-insert nil -sort make-byte-code 514 "\301\300#\207" vconcat vector [sp--pair-to-insert-comparator] 6 "\n\n(fn IT OTHER)"] 11 (#$ . 143406)])
#@68 Return pair with the longest :open which can be inserted at point.
(defalias 'sp--longest-prefix-to-insert #[0 "\301\302\203%@\303\304\305\306\"!!\203\211B\262\210\211T\262A\262\202\266\211\237\262\211\2054\307\310\"@\207" [sp-local-pairs nil 0 sp--looking-back-p sp--strict-regexp-quote plist-get :open -sort #[514 "\300\301\"G\300\301\"GV\207" [plist-get :open] 6 "\n\n(fn IT OTHER)"]] 9 (#$ . 143909)])
#@308 Return pair to uninsert.
 
If the current to-be-inserted pair shares a prefix with
another (shorter) pair, we must first remove the effect of
inserting its closing pair before inserting the current one.
 
The previously inserted pair must be the one with the longest
common prefix excluding the current pair.
(defalias 'sp--pair-to-uninsert #[0 "\300 \211\205o\212\301\302\"G\206\303[u\210\304\305!\211\205l\211A\262\242\211\205j\211\205h\306\307\310\311\312\313!\314\"\315\316%\317\320\203`@\301\302\"G\301 \302\"GY\204T\211B\262\210\211T\262A\262\202:\266\211\237\262\"@\262\262\262)\207" [sp--longest-prefix-to-insert plist-get :open 1 sp--all-pairs-to-insert sp--looking-at-p -sort make-byte-code 514 "\301\300\"G\301\300\"GV\207" vconcat vector [plist-get] 6 "\n\n(fn IT OTHER)" nil 0] 14 (#$ . 144342)])
#@65 Get basic info about the to-be-inserted pair.
 
(fn ACTIVE-PAIR)
(defalias 'sp--insert-pair-get-pair-info #[257 "\300\301\"\211\300\302\"\300\303\"\211\203!\304\305!!\203\211\202\"\202\"\262E\207" [plist-get :open :close :trigger sp--looking-back-p sp--strict-regexp-quote] 8 (#$ . 145188)])
#@442 Automatically insert the closing pair if it is allowed in current context.
 
If PAIR is provided, use this as pair ID instead of looking
through the recent history of pressed keys.
 
You can disable this feature completely for all modes and all pairs by
setting `sp-autoinsert-pair' to nil.
 
You can globally disable insertion of closing pair if point is
followed by the matching opening pair.  It is disabled by
default.
 
(fn &optional PAIR)
(defalias 'sp-insert-pair #[256 "\203J\306\3072H\310\311\312\313\314!\315\"\316$\216\211\203\211c\210\317 )\320!\211A\262\242\211A\262\242@\321\322 !\204\225\203\225`    Z\323U\203\225\324\311\325O!\211\203\224\325\306O\310\311\326\313\314!\327\"\323$\216\330\325!\210\331\332!\211\203\221\212\211\333\334\"\333\335\"GZ\333\334\"|\210\333\334\"\333\335\"GZb\210c\266)\336\307\332\"\210\210)\210\210\310\311\312\313\314\n!\337\"\316$\216\203\251c\210\n\205\205 \340>\203\305\232\203\311\341\306\332\"?\202\306\332\205\342\343\332#\205\344\345!?\206\346\347!!?\206\232\203\f\350=\203\212\211G\206\364\323[u\210\351\347!!)\206\232?)\204p\306 \311\203*@\211@\232\204\211B\262\210\211T\262A\262\202 \266\211\237\262\306=\311\203U@\333\352\"\232\204I\211B\262\210\211T\262A\262\2024\266\211\237\262 GGV\205k=\350 *\266\202\202E\324\353\"\203\205`GZB>\354\211\202E\204\217\330G[!\210c\210\355\356\343#\210\3572!?>\204\252\360\361\3622D\"\2102\363H\3572!?>\204\300\360\361\3622D\"\2102\364H=\365 *\211\203\352\333\366\"\321\347!!\203\351GGZ\311V\203\351\330G!\210\210\210c\210G\206\364\323[u\210\367`GZ`G\\#\210@\203\370GG\\!\210\306ABA\306ABA\355\371\343#\210B\3572!?>\2047\360\361\3622D\"\2102\211\323\372BI\266\350\211\266\2050)\207\3072\214\310\311\312\313\314!\373\"\316$\216\211\203a\211c\210\317 )\320!\211A\262\242\211A\262\242@\321\322 !\204\331\203\331`    Z\323U\203\331\324\311\325O!\211\203\330\325\306O\310\311\326\313\314!\327\"\323$\216\330\325!\210\331\332!\211\203\325\212\211\333\334\"\333\335\"GZ\333\334\"|\210\333\334\"\333\335\"GZb\210c\266)\336\307\332\"\210\210)\210\210\310\311\312\313\314\n!\374\"\316$\216\203\355c\210\n\205H\205H \340>\203    \232\203 \341\306\332\"?\202\n\332\205H\342\343\332#\205H\344\345!?\206H\346\347!!?\206H\232\203D\f\350=\203D\212\211G\2068\323[u\210\351\347!!)\206H\232?)\204\264\306 \311\203n@\211@\232\204b\211B\262\210\211T\262A\262\202O\266\211\237\262\306=\311\203\231@\333\352\"\232\204\215\211B\262\210\211T\262A\262\202x\266\211\237\262 GGV\205\257=\350 *\266\202\202\211\324\353\"\203\311`GZB>\354\211\202\211\204\323\330G[!\210c\210\355\356\343#\210\3572!?>\204\356\360\361\3622D\"\2102\363H\3572!?>\204\360\361\3622D\"\2102\364H=\365 *\211\203.\333\366\"\321\347!!\203-GGZ\311V\203-\330G!\210\210\210c\210G\2068\323[u\210\367`GZ`G\\#\210@\203`\370GG\\!\210\306ABA\306ABA\355\371\343#\210B\3572!?>\204{\360\361\3622D\"\2102\211\323\372BI\266\350\211\266\2050\207" [case-fold-search sp-pre-command-point sp-autoinsert-pair sp-autoskip-closing-pair sp-last-operation sp-pair-list nil done make-byte-code 0 "\300\205    \301\300G[!\207" vconcat vector [delete-char] 2 sp--pair-to-insert sp--insert-pair-get-pair-info sp--looking-at-p sp--get-closing-regexp 1 sp-get-pair -1 "\300c\207" [] delete-char sp-get-thing t plist-get :end :cl throw [delete-char] (always always-end) sp-skip-closing-pair sp--do-action-p insert sp--get-active-overlay pair sp--looking-at sp--strict-regexp-quote sp-insert-pair sp--looking-back :open :when-cond sp-insert-pair-delayed sp--run-hook-with-args :pre-handlers type-of signal wrong-type-argument sp-state 5 6 sp--pair-to-uninsert :close sp--pair-overlay-create sp--split-last-insertion-undo :post-handlers :next [delete-char] [delete-char] sp-local-pairs sp-delayed-pair cl-struct-sp-state-tags sp-undo-pairs-separately buffer-undo-list sp-last-inserted-pair] 14 (#$ . 145498)])
#@156 If the last operation was a wrap and `sp-wrap-repeat-last' is
non-nil, repeat the wrapping with this pair around the last
active region.
 
(fn ACTIVE-PAIR)
(defalias 'sp--wrap-repeat-last #[257 "\303U?\205\272    \205\272    \304\305\"\262    \304\306\"\262    \304\307\"\262\211G    \304\310\"G\262@G\311U\203;@\232\202>\312U\205\270\n\313>\205\270`\314#U\204X`U\205\270\315[!\210`W\203\220\\b\210@c\210Zb\210Ac\210\316\\`    @\nA$\314#b\210\202\255b\210@c\210b\210Ac\210\316    @\nA$\317\320@\321\322#\210\n\266\206\207" [sp-wrap-repeat-last sp-last-wrapped-region sp-last-operation 0 plist-get :beg :end :op :cl 1 2 (sp-self-insert sp-wrap-region) + delete-char sp--get-last-wraped-region sp-wrap-region sp--run-hook-with-args :post-handlers wrap] 12 (#$ . 149615)])
#@83 Return non-nil if CHAR is part of a string-like delimiter of length 1.
 
(fn CHAR)
(defalias 'sp--char-is-part-of-stringlike #[257 "\301\302\303\304\302\305 \306\203'@\211AG\307U\203\211B\262\210\211T\262A\262\202\266\211\237\262\"\310\306\203b\203b@\203D\302\262\202V\311!\302\310\312#)\266\203\262\210\211T\262A\262\2020\266\211\262!\207" [inhibit-changing-match-data ---truthy\? nil -map car sp--get-stringlike-list 0 1 t regexp-quote string-match] 14 (#$ . 150435)])
#@167 Return non-nil if CHAR is part of a pair delimiter of length 1.
Specifically, return the pair for which CHAR is the closing
delimiter.
 
(fn CHAR &optional PAIR-LIST)
(defalias 'sp--char-is-part-of-closing #[513 "\301!\302\211\206 \303 \304\203+@\211AG\305U\203\211B\262\210\211T\262A\262\202\f\266\211\237\262\306\304\203g\203g@\203G\302\262\202[A\302\306\307#)\266\203\203[\211\262\210\211T\262A\262\2023\266\211\262\207" [inhibit-changing-match-data regexp-quote nil sp--get-pair-list 0 1 t string-match] 15 (#$ . 150949)])
#@894 Automatically skip the closing delimiters of pairs.
 
If point is inside an inserted pair, and the user only moved
forward with point (that is, only inserted text), if the closing
pair is typed, we shouldn't insert it again but skip forward.  We
call this state "active sexp".  The setting
`sp-cancel-autoskip-on-backward-movement' controls when an active
expression become inactive.
 
For example, pressing ( is followed by inserting the pair (|).  If
we then type 'word' and follow by ), the result should be (word)|
instead of (word)|).
 
This behaviour can be customized by various settings of
`sp-autoskip-closing-pair' and `sp-autoskip-opening-pair'.
 
Additionally, this behaviour can be selectively disabled for
specific pairs by removing their "autoskip" action.  You can
achieve this by using `sp-pair' or `sp-local-pair' with
":actions '(:rem autoskip)".
 
(fn &optional LAST TEST-ONLY)
(defalias 'sp-skip-closing-pair #[512 "\203\262\306    \307=\203\n\203\310\311!\204    \312>\205\260\313\314K\315\316\317\320\321!\322\"\323$\216\314M\210\306\211\324\262\325\262\206>\326 !\310\311!\211\205|\327\330\"\211\205z\331\f\"A\211\205xG\332U\205x\232\205x\333\334!\335\336!\337\340\341\342\343\342\257\f\262\262\262\206\311\344!\203\241\345\346 !\205\311\347\350\316!\316\224\316\225#?\205\311!\202\311\351!\205\311\345\352 !\203\300\347\350\316!\316\224\316\225#\204\300!\202\311    \353=\205\311!\211\203\244\211\203\236\211\354\340\"\262\232\203\236\355\354\337\"\262\356\"\203\236\357 \203\366\360`S!\204\236`\354\333\"\262U\203 \205u\203\307\202u\361\362!\210\306u\210\363\211>\202u`\354\335\"\354\340\"GZ\262U\203C\2038\307\202u\361\332!\210\363\211>\202u\211`\354\333\"\354\337\"G\\V\205_`\354\335\"\354\340\"GZW\262\205u\203m\307\202u\361\362!\210\364\306\307\"\211\205\231\204\207?\204\207\365\306!\210\204\230\366\354\337\"\262\367\370#\210\211\262\202\247\371!\202\247\371!\262\262\266\202)\266\202)\207    \307=\203\302\n\203\302\310\311!\204\310    \312>\205\\\372\314K\315\316\317\320\321!\373\"\323$\216\314M\210\306\211\374\262\375\262\206\352\326 !\310\311!\211\205(\327\330\"\211\205&\331\f\"A\211\205$G\332U\205$\232\205$\333\334!\335\336!\337\340\341\342\343\342\257\f\262\262\262\206u\344!\203M\345\346 !\205u\347\350\316!\316\224\316\225#?\205u!\202u\351!\205u\345\352 !\203l\347\350\316!\316\224\316\225#\204l!\202u    \353=\205u!\211\203P\211\203J\211\354\340\"\262\232\203J\355\354\337\"\262\356\"\203J\357 \203\242\360`S!\204J`\354\333\"\262U\203\311 \205!\203\273\307\202!\361\362!\210\306u\210\363\211>\202!`\354\335\"\354\340\"GZ\262U\203\357\203\344\307\202!\361\332!\210\363\211>\202!\211`\354\333\"\354\337\"G\\V\205 `\354\335\"\354\340\"GZW\262\205!\203\307\202!\361\362!\210\364\306\307\"\211\205E\2043?\2043\365\306!\210\204D\366\354\337\"\262\367\370#\210\211\262\202S\371!\202S\371!\262\262\266\202)\266\202\207" [case-fold-search sp-autoskip-closing-pair sp-pair-overlay-list last-command-event sp-pair-list sp-autoskip-opening-pair nil t sp--get-active-overlay pair (always always-end) #[0 "\301\302\203*@\303@\304\"\203\211@A\232\203\211B\262\210\211T\262A\262\202\266\211\237\207" [sp-pair-list nil 0 sp--do-action-p autoskip] 7] sp--get-allowed-stringlike-list make-byte-code 0 "\301\300M\207" vconcat vector [sp--get-allowed-stringlike-list] 2 #[257 "\300\301!\210\302c\210\303 \300\301!\210c\210\207" [delete-char -1 #1=" " sp-get-sexp] 4 "\n\n(fn LAST)"] #[257 "\300\301!\210\302c\210\303 \300\301!\210c\210\207" [delete-char -1 #2=" " sp-get-enclosing-sexp] 4 "\n\n(fn LAST)"] sp--single-key-description overlay-get pair-id assoc 1 :beg overlay-start :end overlay-end :op :cl :prefix "" :suffix sp--char-is-part-of-stringlike sp--looking-at sp--get-stringlike-regexp sp--skip-match-p match-string-no-properties sp--char-is-part-of-closing sp--get-closing-regexp always plist-get sp--do-action-p autoskip sp-point-in-string sp-char-is-escaped-p delete-char -1 sp-skip-closing-pair sp-up-sexp set-buffer-modified-p sp--run-hook-with-args :post-handlers skip-closing-pair sp--inhibit-insertion-of-closing-delim #[0 "\301\302\203*@\303@\304\"\203\211@A\232\203\211B\262\210\211T\262A\262\202\266\211\237\207" [sp-pair-list nil 0 sp--do-action-p autoskip] 7] [sp--get-allowed-stringlike-list] #[257 "\300\301!\210\302c\210\303 \300\301!\210c\210\207" [delete-char -1 #1# sp-get-sexp] 4 "\n\n(fn LAST)"] #[257 "\300\301!\210\302c\210\303 \300\301!\210c\210\207" [delete-char -1 #2# sp-get-enclosing-sexp] 4 "\n\n(fn LAST)"] sp-last-operation sp-buffer-modified-p] 22 (#$ . 151521)])
#@414 Inhibit insertion of closing delimiter in `smartparens-strict-mode'.
 
If we are not inserting inside string or a comment, and the LAST
inserted character is closing delimiter for a pair that performs
autoskip, and we can not jump out of its enclosing sexp (i.e. it
does not match), we are not allowed to insert it literally
because it would break the balance; so we delete the
just-inserted character.
 
(fn LAST)
(defalias 'sp--inhibit-insertion-of-closing-delim #[257 "\205,\302\303 \"\211\205\304\305@\306\">\262\205,\307 ?\205,\310\311!\210\312    !\210\313\314!\210\315\207" [smartparens-strict-mode sp-buffer-modified-p sp--char-is-part-of-closing sp--get-allowed-pair-list autoskip sp-get-pair :actions sp-point-in-string-or-comment delete-char -1 set-buffer-modified-p sp-message :cant-insert-closing-delimiter nil] 6 (#$ . 156308)])
#@666 Automatically delete opening or closing pair, or both, depending on
position of point.
 
If the point is inside an empty pair, automatically delete both.  That
is, [(|) turns to [|, [{|} turns to [|.  Can be disabled by setting
`sp-autodelete-pair' to nil.
 
If the point is behind a closing pair or behind an opening pair delete
it as a whole.  That is, {}| turns to {|, {| turns to |.  Can be
disabled by setting `sp-autodelete-closing-pair' and
`sp-autodelete-opening-pair' to nil.
 
If the last operation was a wrap and `sp-autodelete-wrap' is
enabled, invoking this function will unwrap the expression, that
is remove the just added wrapping.
 
(fn &optional ARG)
(defalias 'sp-delete-pair #[256 "\203\364\306\211\307U\205\362    \205\362\n\203c \310=\203c`\f\311\312\"\262\f\311\313\"\262\f\311\314\"G\262\f\311\315\"G\262\\U\204GU\205^\316c\210\212b\210\317[!\210b\210\317!\210)\320\211\266\205\202\362`\306 \321\322\203\237\203\237@\203|\306\262\202\223\323\324@!!\203\223\325\326\324A!P!\203\223\211\262\210\211T\262A\262\202h\266\211\262\306 \321\322\203\324\203\324@\203\274\306\262\202\310\323\324A!!\203\310\211\262\210\211T\262A\262\202\250\266\211\262\306 \321\322\203    \203    @\203\361\306\262\202\375\323\324@!!\203\375\211\262\210\211T\262A\262\202\335\266\211\262\327 \203O\327T!\204O\327S!\203O\2038 \2038\317@GS[!\210\330\211\202\360\211\205\360!\205\360\317@GS[!\210\331\211\202\360\203\305\"\203\305\212\332@!)\212\333A!)\334!\334!\335 \336=\203y\336=\205\300\311\312\"\262=\205\300\311\313\"\262=\205\300\211\311\314\"\262@\232\205\300\211\311\315\"\262A\232\205\300\317\nZ!\210\317@GS[!\210\337\211\266\205\202\360\203\334 \203\334\317AGS[!\210\330\211\202\360\211\205\360!\205\360\317@GS[!\210\331\211\266\204)\207\211\307U\205\334    \205\334\n\203M \310=\203M`\f\311\312\"\262\f\311\313\"\262\f\311\314\"G\262\f\311\315\"G\262\\U\2045U\205L\316c\210\212b\210\317[!\210b\210\317!\210)\320\211\207`\306 \321\322\203\211\203\211@\203f\306\262\202}\323\324@!!\203}\325\326\324A!P!\203}\211\262\210\211T\262A\262\202R\266\211\262\306 \321\322\203\276\203\276@\203\246\306\262\202\262\323\324A!!\203\262\211\262\210\211T\262A\262\202\222\266\211\262\306 \321\322\203\363\203\363@\203\333\306\262\202\347\323\324@!!\203\347\211\262\210\211T\262A\262\202\307\266\211\262\327 \2039\327T!\2049\327S!\2039\203\" \203\"\317@GS[!\210\330\211\202\332\211\205\332!\205\332\317@GS[!\210\331\211\202\332\203\257\"\203\257\212\332@!)\212\333A!)\334!\334!\335 \336=\203c\336=\205\252\311\312\"\262=\205\252\311\313\"\262=\205\252\211\311\314\"\262@\232\205\252\211\311\315\"\262A\232\205\252\317\nZ!\210\317@GS[!\210\337\211\266\205\202\332\203\306 \203\306\317AGS[!\210\330\211\202\332\211\205\332!\205\332\317@GS[!\210\331\211\266\204\207" [case-fold-search smartparens-mode sp-autodelete-wrap sp-last-operation sp-last-wrapped-region sp-pair-list nil 1 sp-wrap-region plist-get :beg :end :op :cl "x" delete-char sp-delete-pair-wrap t 0 sp--looking-back sp--strict-regexp-quote sp--looking-at "[ \n    ]*" sp-point-in-string sp-delete-pair-closing sp-delete-pair-opening search-backward search-forward sp--get-context sp-get-sexp comment sp-delete-pair sp-autodelete-closing-pair sp-autodelete-opening-pair sp-autodelete-pair] 15 (#$ . 157162)])
#@60 Like `looking-at', but always case sensitive.
 
(fn REGEXP)
(defalias 'sp--looking-at #[257 "\203 \301\302!)\207\302!\207" [case-fold-search nil looking-at] 3 (#$ . 160711)])
#@62 Like `looking-at-p', but always case sensitive.
 
(fn REGEXP)
(defalias 'sp--looking-at-p #[257 "\203\302\211\303\304!)\262)\207\211\303\304!)\207" [case-fold-search inhibit-changing-match-data nil t looking-at] 4 (#$ . 160896)])
#@346 Return non-nil if text before point matches regular expression REGEXP.
 
With optional argument LIMIT search only that many characters
backward.  If LIMIT is nil, default to `sp-max-pair-length'.
 
If optional argument NON-GREEDY is t search for any matching
sequence, not necessarily the longest possible.
 
(fn REGEXP &optional LIMIT NOT-GREEDY)
(defalias 'sp--looking-back #[769 "\206\262    \203u\302\303`Z]`?\302\203d\212b\210\304 \305\306\307\310\311!\312\"\313$\216\204U`W\203U\212\314\315#)\203O\306\225U\203O\304 \262\202,\303u\210\202,)\210\211\205`\316!\210\315)\202q\212\317\320\321Q\315#)??\266\204)\207\303`Z]`?\302\203\314\212b\210\304 \305\306\307\310\311!\322\"\313$\216\204\275`W\203\275\212\314\315#)\203\267\306\225U\203\267\304 \262\202\224\303u\210\202\224)\210\211\205\310\316!\210\315)\202\331\212\317\320\321Q\315#)??\207" [sp-max-pair-length case-fold-search nil 1 match-data make-byte-code 0 "\301\300\302\"\207" vconcat vector [set-match-data evaporate] 3 re-search-forward t set-match-data search-backward-regexp "\\(?:" "\\)\\=" [set-match-data evaporate]] 14 (#$ . 161141)])
#@102 Same as `sp--looking-back' but do not change the match data.
 
(fn REGEXP &optional LIMIT NOT-GREEDY)
(defalias 'sp--looking-back-p #[769 "\300 \301\302\303\304\305!\306\"\307$\216\310#)\207" [match-data make-byte-code 0 "\301\300\302\"\207" vconcat vector [set-match-data evaporate] 3 sp--looking-back] 10 (#$ . 162305)])
#@319 Works just like `search-backward-regexp', but returns the
longest possible match.  That means that searching for
"defun|fun" backwards would return "defun" instead of
"fun", which would be matched first.
 
This is an internal function.  Only use this for searching for
pairs!
 
(fn REGEXP &optional BOUND NOERROR COUNT)
(defalias 'sp--search-backward-regexp #[1025 "\211\206\301\262\302 \206 \262\203L\303\211\304V\203G\305#\203@\304\225b\210\306!\2036\304\224b\262\202@\204@\307\310\"\210S\262\202\211\262)\207\303\304V\203~\305#\203w\304\225b\210\306!\203m\304\224b\262\202w\204w\307\310\"\210S\262\202M\211\207" [case-fold-search 1 sp--get-backward-bound nil 0 search-backward-regexp sp--looking-back error "Search failed: %s"] 10 (#$ . 162638)])
#@106 Just like `search-forward-regexp', but always case sensitive.
 
(fn REGEXP &optional BOUND NOERROR COUNT)
(defalias 'sp--search-forward-regexp #[1025 "\301 \206\262\203\302\303$)\207\303$\207" [case-fold-search sp--get-forward-bound nil search-forward-regexp] 9 (#$ . 163438)])
#@182 Just like `sp--search-forward-regexp' but only accept results in same context.
 
The context at point is considered the reference context.
 
(fn REGEXP &optional BOUND NOERROR COUNT)
(defalias 'sp--search-forward-in-context #[1025 "\300 \301\206\302\303\211W\2034\212\304#\211\262\203%\300 =\203)\203-b\210\211T\262\202    \266\207" [sp--get-context nil 1 0 sp--search-forward-regexp] 12 (#$ . 163738)])
#@183 Just like `sp--search-backward-regexp' but only accept results in same context.
 
The context at point is considered the reference context.
 
(fn REGEXP &optional BOUND NOERROR COUNT)
(defalias 'sp--search-backward-in-context #[1025 "\300 \301\206\302\303\211W\2034\212\304#\211\262\203%\300 =\203\203,b\210)\211T\262\202    \266\207" [sp--get-context nil 1 0 sp--search-backward-regexp] 12 (#$ . 164166)])
#@154 Return the bounds of the string around POINT.
 
POINT defaults to `point'.
 
If the point is not inside a quoted string, return nil.
 
(fn &optional POINT)
(defalias 'sp-get-quoted-string-bounds #[256 "\211\206`\262\212\211b\210\300 \3018\205)\3028\212\303`d\304\211\305&\210`)B\266\202\262)\207" [syntax-ppss 3 8 parse-partial-sexp nil syntax-table] 10 (#$ . 164597)])
#@54 If the point is inside a comment, return its bounds.
(defalias 'sp-get-comment-bounds #[0 "\300 \204 \301\302!\205\254\212\303\304 8\211\203\211b\210\210o\204?\300 \203'\305u\210\202\212\306 \210\301\307!)\203?\305y\310Y\203\311\210\202o\203H\300 \204K\311u\210`)\212m\204c\300 \204]\301\302!\203c\312u\210\202N`Sm\204\244\300 \204\244\301\302!\204\244\211fz\313=\203\203\211f\314=\203\244\315\316\312\317\"\320!@\"\310U\203\244\315\316\312\321\"\320!@\"\310U\203\244\305u\210\210`)B\266\202\207" [sp-point-in-comment looking-at "[[:space:]]+\\s<" 8 sp--syntax-ppss -1 beginning-of-line "^[[:space:]]+\\s<" 0 nil 1 62 10 logand lsh 18 syntax-after 19] 6 (#$ . 164982)])
#@54 Get the bounds of string or comment the point is in.
(defalias 'sp--get-string-or-comment-bounds #[0 "\300 \206\301 \207" [sp-get-quoted-string-bounds sp-get-comment-bounds] 1 (#$ . 165689)])
#@73 Save the last match info.
 
(fn SEARCH-FN PATTERN BOUND RES BEG END STR)
(defalias 'sp--search-and-save-match '(macro . #[1799 "\300\301\302\n\n\n\303BBBBE\304\301\305BB\301\306BB\301\307BB\257F\207" [progn setq funcall (t) when ((match-beginning 0)) ((match-end 0)) ((match-string 0))] 16 (#$ . 165889)]))
#@517 Return non-nil if this match should be skipped.
 
This function uses two tests, one specified in
`sp-navigate-skip-match' (this is global setting for all pairs in
given major mode) and by a function specified in :skip-match
property of the pair.
 
If you are calling this function in a heavy loop, you can supply
the test functions as keyword arguments to speed up the lookup.
 
(fn MS MB ME &key (GLOBAL-SKIP (cdr (--first (memq major-mode (car it)) sp-navigate-skip-match))) (PAIR-SKIP (sp-get-pair ms :skip-match)))
(defalias 'sp--skip-match-p #[899 "\302\303\"\206=\304\211\305\306\2036\2036@\203 \304\262\202*    @>\203*\211\262\210\211T\262A\262\202\f\266\211\262ADA@\302\307\"\206M\304\310\311\"DA@\211\203z\211@\312>\203c\211AA\262\202P\313>A@\203q\304\262\202P\314\315@\"\210\202P\210\316 \317\306\320\321\322!\323\"\324$\216\203\230#\206\244\205\244#)\262\207" [sp-navigate-skip-match major-mode plist-member :global-skip nil t 0 :pair-skip sp-get-pair :skip-match (:global-skip :pair-skip :allow-other-keys) :allow-other-keys error "Keyword argument %s not one of (:global-skip :pair-skip)" match-data make-byte-code "\301\300\302\"\207" vconcat vector [set-match-data evaporate] 3] 13 (#$ . 166217)])
#@120 Test the last match using `sp--skip-match-p'.  The form should
be a function call that sets the match data.
 
(fn FORM)
(defalias 'sp--valid-initial-delimiter-p '(macro . #[257 "\300\301!\300\302!\303\304\305B\306\307\310BB\307\311\312\313\314 E\315BBD\316BBEDD\317\320\321\322\323\n\257DEE\207" [make-symbol "match" "pair-skip" and let* ((match-string 0)) or sp-get-pair (:skip-match) car --first equal (cdr it) (sp-pair-list) (:skip-match) not sp--skip-match-p (match-beginning 0) (match-end 0) :pair-skip] 16 (#$ . 167488)]))
(put 'sp--valid-initial-delimiter-p 'edebug-form-spec '(form))
#@113 Function used to test for escapes in lisp modes.
 
Non-nil return value means to skip the result.
 
(fn MS MB ME)
(defalias 'sp--elisp-skip-match #[771 "\205W\300V\205W\212b\210\301 \302\303\304\305\306!\307\"\310$\216\311\312\300\313#\203-\311\314\310\313#?\206S\315 ?\205S\311\316\300\313#\205S\311\317\320\313#?\205S\311\321\320\313#?\205S\311\322\320\313#?)\262)\207" [1 match-data make-byte-code 0 "\301\300\302\"\207" vconcat vector [set-match-data evaporate] 3 sp--looking-back "\\\\" t "\\?\\\\\\\\" sp-point-in-string-or-comment "\\?" "\\\\\\?" 2 "\\s_\\?" "\\sw\\?"] 10 (#$ . 168096)])
#@17 
 
(fn MS MB ME)
(defalias 'sp--backslash-skip-match #[771 "\205\212b\210\300\301\302\303#)\207" [sp--looking-back "\\\\" 1 t] 7 (#$ . 168709)])
#@153 Find the nearest balanced pair expression after point.
 
The expressions considered are those delimited by pairs on
`sp-pair-list'.
 
(fn &optional BACK)
(defalias 'sp-get-paired-expression #[256 "\203\205\303\212\211\204\304\202\305\303    \306\307\203>\203>@\203(\303\262\2022\n@>\2032\211\262\210\211T\262A\262\202\266\211\262A\310 \203\222\311 \312 \212`eU?\205\214\313u\210\314`!@\315=\203f`\202\214\203t\311 \205\214`T\202\214\204\202\311 \203\202`T\202\214\204\212\211\205\214`T)\266\202\202\230\316 \205\230`\211\205\241\211b\210\317 \203\252\211A\202\253d\203\264@\202\265e\303\211\211\211\211\211\211\211\211\211\211\211\204^\320\321 !\203\325\202\327\306#\262\203\354\307\224\262    \307\225\262\322\307!\262\203^\212\203b\210\323\320 !\202    b\210\324\320 !)\203\301\325\n\n\326%\204\301\204X\203*\316 \202.\316`S!\203X\317 \211\203Q\203A\211@\202C\211A\211b\210m\203M\306\262\210\202T\306\262\210\202\301\306\262\202\301\205\201\303\307\203\215@\n@\232\204|\nA\232\203\201\211B\262\210\211T\262A\262\202f\266\211\237\262\262\327\330\"\262\327\331\"\262\332\"\262\262\203\303\307\203\334@\333@\"\204\313\333A\"\203\320\211B\262\210\211T\262A\262\202\264\266\211\237\262\262\332\"\262\334\327\330\"\"\262\334\327\331\"\"\262\202\254\335\303\306\307\203-\203-@\203\303\262\202!\f\232\262\210\211T\262A\262\202\266\211\262!\203G\306\262\n\262\f\203GGu\210\335\303\306\307\203r\203r@\203`\303\262\202f\f\232\262\210\211T\262A\262\202L\266\211\262!\203\221\303\262\n\262 \204\221G\206\216\336[u\210    \203\232\202\233\211\n\203\244\202\245\337\334\"!\f\203\264\304\202\265\305\336\203\277\340\202\300\341\203\312\202\314\342!\342! \343\334\344\345\"\"\307V\203\366 \204\366    \306#\262\203\307\224\262\307\225\262\322\307!\262\203\344\204$\203\212\313u\210\316 )\202!\316 \204\336\303\306\307\203S\203S@\203<\303\262\202G\211@\232\203G\211\262\210\211T\262A\262\202(\266\211\262A\325\326\"\346&\262\204\336\335\303\f\306\307\203\231\203\231@\203\207\303\262\202\215\232\262\210\211T\262A\262\202s\266\211\262!\203\247T\262\335\303 \306\307\203\323\203\323@\203\301\303\262\202\307\232\262\210\211T\262A\262\202\255\266\211\262!\203\336S\262\202\336\347 \204\355\350\351!\210\313\262\306\262\202\336\203\262\202\262\342!\262\204\307U\204$\347 \204 \350\351!\210\303\202\316S!\316!\2034\211\203?\316!\204L\211\203L\347 \204H\350\352!\210\303\202}\203U\202V\353\354\355\356\203i \202k\f\357\360\" \"\361\362# \"\257\f\262\262\266\213\266\223*\207\212\211\204\216\304\202\217\305\303    \306\307\203\275\203\275@\203\247\303\262\202\261\n@>\203\261\211\262\210\211T\262A\262\202\223\266\211\262A\310 \203\311 \312 \212`eU?\205 \313u\210\314`!@\315=\203\345`\202 \203\363\311 \205 `T\202 \204\311 \203`T\202 \204    \211\205 `T)\266\202\202\316 \205`\211\205 \211b\210\317 \203)\211A\202*d\2033@\2024e\303\211\211\211\211\211\211\211\211\211\211\211\204\335\320\321 !\203T\202V\306#\262\203k\307\224\262    \307\225\262\322\307!\262\203\335\212\203\200b\210\323\320 !\202\210b\210\324\320 !)\203@\325\n\n\326%\204@\204\327\203\251\316 \202\255\316`S!\203\327\317 \211\203\320\203\300\211@\202\302\211A\211b\210m\203\314\306\262\210\202\323\306\262\210\202@\306\262\202@\205    \303\307\203\f@\n@\232\204\373\nA\232\203\211B\262\210\211T\262A\262\202\345\266\211\237\262\262\327\330\"\262\327\331\"\262\332\"\262\262\203\201\303\307\203[@\333@\"\204J\333A\"\203O\211B\262\210\211T\262A\262\2023\266\211\237\262\262\332\"\262\334\327\330\"\"\262\334\327\331\"\"\262\202+\335\303\306\307\203\254\203\254@\203\232\303\262\202\240\f\232\262\210\211T\262A\262\202\206\266\211\262!\203\306\306\262\n\262\f\203\306Gu\210\335\303\306\307\203\361\203\361@\203\337\303\262\202\345\f\232\262\210\211T\262A\262\202\313\266\211\262!\203\303\262\n\262 \204G\206 \336[u\210    \203\202\211\n\203#\202$\337\334\"!\f\2033\304\2024\305\336\203>\340\202?\341\203I\202K\342!\342! \343\334\344\363\"\"\307V\203u \204u    \306#\262\203\205\307\224\262\307\225\262\322\307!\262\203c\204\243\203\236\212\313u\210\316 )\202\240\316 \204]\303\306\307\203\322\203\322@\203\273\303\262\202\306\211@\232\203\306\211\262\210\211T\262A\262\202\247\266\211\262A\325\326\"\346&\262\204]\335\303\f\306\307\203\203@\203\303\262\202\f\232\262\210\211T\262A\262\202\362\266\211\262!\203&T\262\335\303 \306\307\203R\203R@\203@\303\262\202F\232\262\210\211T\262A\262\202,\266\211\262!\203]S\262\202]\347 \204l\350\351!\210\313\262\306\262\202]\203\201\262\202\205\262\342!\262\204\226\307U\204\243\347 \204\237\350\351!\210\303\202\376\316S!\316!\203\263\211\203\276\316!\204\313\211\203\313\347 \204\307\350\352!\210\303\202\374\203\324\202\325\353\354\355\356\203\350 \202\352\f\357\360\" \"\361\362# \"\257\f\262\262\266\213\266\223)\207" [case-fold-search sp-navigate-skip-match major-mode nil sp--search-forward-regexp sp--search-backward-regexp t 0 sp--get-allowed-pair-list sp-point-in-comment sp-point-in-string -1 syntax-after 15 sp-point-in-string-or-comment sp--get-string-or-comment-bounds sp--get-allowed-regexp sp--get-pair-list match-string sp--looking-back-p sp--looking-at-p sp--skip-match-p :global-skip -map car cdr -difference -contains\? append ---truthy\? 1 sp--strict-regexp-opt eobp bobp substring-no-properties apply mapcar #[257 "\300\301\"\211\205B\300\302\"BD\207" [sp-get-pair :skip-match :close] 6 "\n\n(fn IT)"] :pair-skip minibufferp sp-message :unmatched-expression :delimiter-in-string :beg :end :op :cl :prefix sp--get-prefix :suffix sp--get-suffix #[257 "\300\301\"\211\205B\300\302\"BD\207" [sp-get-pair :skip-match :close] 6 "\n\n(fn IT)"]] 47 (#$ . 168864)])
#@141 Find the next string-like delimiter, considering the escapes
and the skip-match predicate.
 
(fn NEEDLE SEARCH-FN-F &optional LIMIT SKIP-FN)
(defalias 'sp--find-next-stringlike-delimiter #[1026 "\301\211\204s\302#\203s\303 \304\305\306\307\310!\311\"\312$\216\313\305!\262\303 \304\305\306\307\310!\314\"\312$\216\212\305\224b\210\315\316\317\"\206L\320=\205L\321 ?\205L\315\322\323\"*\262\204n\324\305\224\305\225\325\206c\326\327\"\330\301&\204n\303 \262)\210\202\207" [major-mode nil t match-data make-byte-code 0 "\301\300\302\"\207" vconcat vector [set-match-data evaporate] 3 match-string-no-properties [set-match-data evaporate] sp--looking-back-p "\\\\" 2 emacs-lisp-mode sp-point-in-string "?" 1 sp--skip-match-p :pair-skip sp-get-pair :skip-match :global-skip] 15 (#$ . 175294)])
#@200 Find the nearest string-like expression after point.
 
String-like expression is expression enclosed with the same
opening and closing delimiter, such as *...*, "...", `...` etc.
 
(fn &optional BACK)
(defalias 'sp-get-stringlike-expression #[256 "\203\323\301\212\302 \204\303\202\304\203\303\202\304\305\301\211\211\211\211\211    \306\232?\205\317\307\n\n\"\205\317\310\305!\262\311!\262\n\312\313\"\262\314 \203Q\315 \262\202Z\316 \203Z\317 \262\212\307\n\320@$\203oT\262\202[)\321\322\"\305U\203\202\307\n    \301#\210\212\307\n\304@#\262\305\224\262)\211\205\234\307\n\323A#\262\305\225\262\211\205\317^\262]\262\266\324\325\326\n\327\f\330\331\"\332\333\"\257\f\266\212*\207\212\302 \204\336\303\202\337\304\203\347\303\202\350\304\305\301\211\211\211\211\211    \306\232?\205\234\307\n\n\"\205\234\310\305!\262\311!\262\n\312\313\"\262\314 \203\315 \262\202'\316 \203'\317 \262\212\307\n\320@$\203<T\262\202()\321\322\"\305U\203O\307\n    \301#\210\212\307\n\304@#\262\305\224\262)\211\205i\307\n\323A#\262\305\225\262\211\205\234^\262]\262\266\324\325\326\n\327\f\330\331\"\332\333\"\257\f\266\212)\207" [case-fold-search nil sp--get-stringlike-regexp sp--search-forward-regexp sp--search-backward-regexp 0 "" sp--find-next-stringlike-delimiter match-string-no-properties regexp-quote sp-get-pair :skip-match sp-point-in-string sp-get-quoted-string-bounds sp-point-in-comment sp-get-comment-bounds search-backward-regexp mod 2 search-forward-regexp :beg :end :op :cl :prefix sp--get-prefix :suffix sp--get-suffix] 25 (#$ . 176118)])
#@381 Get a regexp matching text-mode string-like DELIMITERS.
 
Capture group 1 or 2 has the delimiter itself, depending on the
direction (forward, backward).
 
If DIRECTION is :open, create a regexp matching opening only.
 
If DIRECTION is :close, create a regexp matching closing only.
 
If DIRECTION is nil, create a regexp matching both directions.
 
(fn DELIMITERS &optional DIRECTION)
(defalias 'sp--textmode-stringlike-regexp #[513 "\300!\203 \301=\203\302\303\304\305\306\260\202\307\204!\310\202\"\307\203,\311=\2037\312\304\305\313\305\260\2028\307Q\207" [regexp-opt :open "\\(?:" "\\(?:\\`\\|[     \n ]\\)" "\\(" "\\)" "[^     \n ]\\)" "" "\\|" :close "\\(?:[^     \n ]" "\\(?:[     \n [:punct:]]\\|\\'\\)"] 11 (#$ . 177797)])
#@133 Find the next string-like delimiter, considering the escapes
and the skip-match predicate.
 
(fn NEEDLE SEARCH-FN-F &optional LIMIT)
(defalias 'sp--find-next-textmode-stringlike-delimiter #[770 "\300\211\204T\301#\203T\302 \303\304\305\306\307!\310\"\311$\216\312\313!\203%\313\202&\314\315!\224\225\316\317\"\320\321\322\300&\204M\313U\203I\323\202J\324D\262\266)\210\202\211\207" [nil t match-data make-byte-code 0 "\301\300\302\"\207" vconcat vector [set-match-data evaporate] 3 match-string 1 2 match-string-no-properties sp-get-pair :skip-match sp--skip-match-p :pair-skip :global-skip :open :close] 18 (#$ . 178539)])
#@648 Find the nearest text-mode string-like expression.
 
If BACK is non-nil search in the backwards direction.
 
Text-mode string-like expression is one where the delimiters must
be surrounded by whitespace from the outside.  For example,
 
foo *bar* baz
 
is a valid expression enclosed in ** pair, but
 
foo*bar*baz  OR  foo *bar*baz  OR  foo*bar* baz
 
are not.
 
This is the case in almost every markup language, and so we will
adjust the parsing to only consider such pairs as delimiters.
This makes the parsing much faster as it transforms the problem
to non-stringlike matching and we can use a simple
counting (stack) algorithm.
 
(fn &optional BACK)
(defalias 'sp-get-textmode-stringlike-expression #[256 "\212`\300 \206\nedB\301\211\204ob\210\212\3021'\203!\301u\202#\303u0\202+\210\202,\210\304\305\306 \"\307!\204=\310\202>\311\204HA\202J@\312#\211\203f\211A\262\242\211\203_@\211\203X\211\313=\203m\310\202n\311\313=\203z\nA\202}\n@\307C\313=\203\212\314\202\213\313\"`\262\3151\340\204\250\313=\203\250GT\206\245\316[u\210\204\272\314=\203\272m\204\272\303u\210\203\312\314=\203\312GTu\210\205\334\313=\205\334o?\205\334\316u0\202\344\210\202\345\210`\312#\203S\313=\203em\203\375`\202\377`S]\202do\203\f`\202`T^\211^]\317\320\321 \322\323\324 \"\325\326\f\"\257\f\262\327\262\212\330\317\"b\210\331\332\330\320\"\327#)\262\203Q\301\262\301\262\266\266\202[\333\262    \210\202b\333\262\210\202i\333\262\266)\202\f\266\203)\207" [sp-get-comment-bounds nil (error) -1 -map car sp--get-allowed-stringlike-list sp--textmode-stringlike-regexp sp--search-forward-regexp sp--search-backward-regexp sp--find-next-textmode-stringlike-delimiter :open :close (error) 1 :beg :end :op :cl :prefix sp--get-prefix :suffix sp--get-suffix t plist-get re-search-forward "\n\n\\| " :no-more] 33 (#$ . 179195)])
#@58 Test if we should use textmode stringlike parser or not.
(defalias 'sp-use-textmode-stringlike-parser-p #[0 "\302\303\"\304\305\306\303\"\"\307\310\311\312\2035\2035@\203$\310\262\202)    =\262\210\211T\262A\262\202\266\211\262!\206B\313\314\"\207" [sp-navigate-use-textmode-stringlike-parser major-mode -filter symbolp -map cdr -remove ---truthy\? nil t 0 apply derived-mode-p] 10 (#$ . 181111)])
#@316 Return a stringlike expression using stringlike or textmode parser.
 
DELIMITER is a candidate in case we performed a search before
calling this function and we know it's the closest string
delimiter to try.  This is purely a performance hack, do not rely
on it when calling directly.
 
(fn &optional BACK DELIMITER)
(defalias 'sp-get-stringlike-or-textmode-expression #[512 "\300 \203    \301!\207\211\203@\211G\302U\203@\303!z\304=\203@\305 \306=\203<\212\214~\210\307 \211\211A\262\242}\266\310!*\207\311!\207\310!\207" [sp-use-textmode-stringlike-parser-p sp-get-textmode-stringlike-expression 1 string-to-char 34 sp-point-in-string t sp-get-quoted-string-bounds sp-get-stringlike-expression sp-get-string] 8 (#$ . 181536)])
#@349 Find the nearest balanced expression of any kind.
 
For markup and text modes a special, more efficient stringlike
parser is available, see `sp-get-textmode-stringlike-expression'.
By default, this is enabled in all modes derived from
`text-mode'.  You can change it by customizing
`sp-navigate-use-textmode-stringlike-parser'.
 
(fn &optional BACK)
(defalias 'sp-get-expression #[256 "\300 \301 \204\f\302\202 \303\203eS\202dT\203!eS\202#dT\304\305\232\203.\202:\212\304\306#)\206:\262\305\232\203F\202|\212\307\")\211\205v\310\311!\262\312 \313\311\314\315\316!\317\"\320$\216\321!\210\203q\311\224\202s\311\225)\262\262\206|\262\204\211W\204\224\203\235V\203\235\322\323!B\202\244\324\325\"B\211\211A\262\242\211\205\211\322=\203\342 \204\306\326\327\"W\204\325 \203\342\326\330\"V\203\342\325\f\"\206\202\324=\203 \204\367\326\327\"W\204 \203\326\330\"V\203\323\f!\206\202\262\266\203\262\207" [sp--get-allowed-regexp sp--get-stringlike-regexp sp--search-forward-regexp sp--search-backward-regexp nil "" t sp--find-next-stringlike-delimiter match-string 0 match-data make-byte-code "\301\300\302\"\207" vconcat vector [set-match-data evaporate] 3 set-match-data :regular sp-get-paired-expression :string sp-get-stringlike-or-textmode-expression plist-get :beg :end] 16 (#$ . 182283)])
#@1457 Find the nearest balanced expression that is after (before) point.
 
Search backward if BACK is non-nil.  This also means, if the
point is inside an expression, this expression is returned.
 
If `major-mode' is member of `sp-navigate-consider-sgml-tags',
sgml tags will also be considered as sexps in current buffer.
 
If the search starts outside a comment, all subsequent comments
are skipped.
 
If the search starts inside a string or comment, it tries to find
the first balanced expression that is completely contained inside
the string or comment.  If no such expression exist, a warning is
raised (for example, when you comment out imbalanced expression).
However, if you start a search from within a string and the next
complete sexp lies completely outside, this is returned.  Note
that this only works in modes where strings and comments are
properly defined via the syntax tables.
 
The return value is a plist with following keys:
 
  :beg    - point in the buffer before the opening
  delimiter (ignoring prefix)
  :end    - point in the buffer after the closing delimiter
  :op     - opening delimiter
  :cl     - closing delimiter
  :prefix - expression prefix
  :suffix - expression suffix
 
However, you should never access this structure directly as it is
subject to change.  Instead, use the macro `sp-get' which also
provide shortcuts for many commonly used queries (such as length
of opening/closing delimiter or prefix).
 
(fn &optional BACK)
(defalias 'sp-get-sexp #[256 "\305 \210\203\277\306    \203\307!\202\275\n\203\310!\202\275 \f>\203\272\311!\211\203e\211\312\313\"\262\314\232\203e\211\312\315\"\312\313\"G\\`X\205R\312\316\"\312\317\"GZ`Y\262\203[\211\202\265\307!\206\265\211\202\265\204\214\212\320\314\306\321#\206sd)\312\315\"\262\206dW\203\214\307 \206\265\211\202\265\203\264\212\322\323\306\321#\206\232e)\312\316\"\262\206\246dV\203\264\307\321!\206\265\211\202\265\211\262\202\275\311!)\207    \203\307\307!\207\n\203\317\310!\207 \f>\203h\311!\211\203\211\312\313\"\262\314\232\203\211\312\315\"\312\313\"G\\`X\205\312\316\"\312\317\"GZ`Y\262\203 \211\202g\307!\206g\211\202g\204>\212\320\314\306\321#\206%d)\312\315\"\262\2061dW\203>\307 \206g\211\202g\203f\212\322\323\306\321#\206Le)\312\316\"\262\206XdV\203f\307\321!\206g\211\202g\211\207\311!\207" [case-fold-search sp-prefix-tag-object sp-prefix-pair-object major-mode sp-navigate-consider-sgml-tags sp--maybe-init nil sp-get-sgml-tag sp-get-paired-expression sp-get-expression plist-get :op "<" :beg :end :cl search-forward t search-backward ">"] 7 (#$ . 183690)])
#@76 Get the beginning of hybrid sexp.
See `sp-get-hybrid-sexp' for definition.
(defalias 'sp--get-hybrid-sexp-beg #[0 "\212\300\301\262\302 \203 \303 \210`\304 \212\303 )\211\203\211\202\305\306D\262\300\307\305\"\262W\2034!\202}\211\205H\307\305\"V\205H\307\305\"X\262\203W\262\303 \262\2024\211\203k\211\307\310\"\307\311\"GZ\262\202}\307\310\"\307\312\"G\\!]\262\266\204\262)\207" [nil #[257 "\300 \203\207\301 \210`\207" [sp-point-in-blank-line back-to-indentation] 2 "\n\n(fn LB)"] sp-point-in-symbol sp-backward-sexp line-beginning-position :end 0 plist-get :beg :prefix :op] 10 (#$ . 186344)])
#@29 Narrow to the current line.
(defalias 'sp--narrow-to-line #[0 "\300 \301 }\207" [line-beginning-position line-end-position] 2 (#$ . 186990)])
#@70 Get the end of hybrid sexp.
See `sp-get-hybrid-sexp' for definition.
(defalias 'sp--get-hybrid-sexp-end #[0 "\212\300\301\262\302 \203 \303 \210`\304 \212\305 )\211\203\211\202 \306dTD\262\300\307\306\"\262V\203>\310 \2038\202\242!\202\242\211\205R\307\306\"W\205R\307\306\"Y\262\203a\262\305 \262\202>\203p\307\311\"\262\202\307\311\"\307\312\"GZ^\262!\211b\210\313 \203\237\314!\314!U\203\227\304 \202\240b\210\304 \202\240\211\262\266\204\262)\207" [nil #[257 "\212\211b\210\214\300 \210\301\302!\210`*\207" [sp--narrow-to-line skip-syntax-backward " ."] 3 "\n\n(fn P)"] sp-point-in-symbol sp-backward-sexp line-end-position sp-forward-sexp :beg plist-get sp-point-in-blank-line :end :cl sp-point-in-comment line-number-at-pos] 11 (#$ . 187138)])
#@110 Get the hybrid sexp suffix, which is any punctuation after
the end, possibly preceded by whitespace.
 
(fn P)
(defalias 'sp--get-hybrid-suffix #[257 "\212\211b\210\300\214\301 \210\302\303!\210\304\305!\204\202\302\306!\210`)\")\207" [buffer-substring-no-properties sp--narrow-to-line skip-syntax-forward " " looking-at "\\s." "."] 5 (#$ . 187947)])
#@291 Return the hybrid sexp around point.
 
A hybrid sexp is defined as the smallest balanced region containing
the point while not expanding further than the current line.  That is,
any hanging sexps will be included, but the expansion stops at the
enclosing list boundaries or line boundaries.
(defalias 'sp-get-hybrid-sexp #[0 "\300 \301\302 \303\304\305\306\305\307\305\310\311\f!\257\f\207" [sp--get-hybrid-sexp-end :beg sp--get-hybrid-sexp-beg :end :op "" :cl :prefix :suffix sp--get-hybrid-suffix] 14 (#$ . 188309)])
#@167 Return the balanced expression that wraps point at the same level.
 
With ARG, ascend that many times.  This function expects a positive
argument.
 
(fn &optional ARG)
(defalias 'sp-get-enclosing-sexp #[256 "\211\206\302\262\212\211\303\304\305V\203\311\203\311\303\262\304\262\306 \203$\307 \262`\310 \262\203I\311\312\"\262U\203I\311\313\"\262b\210T\262\202\211\203e\311\312\"\262W\203e\311\313\"\262b\210\202\211\203\211\311\312\"\262Y\203\211\310 \262\203e\311\313\"\262b\210\202e\210\211\203\302\203\266\311\312\"\262\311\312\"\262Y\203\266\311\313\"\262\311\313\"\262X\204\302\211\262\311\313\"\262b\210S\262\202 \204\321\204\325\202\314 \205\315 \212\211@b\210\316\303!\210`)\212Ab\210\317\303!\210`)\312\313\320\321\322\321\323    \257\n\266\203\266\203)\207" [sp-navigate-comments-as-sexps sp-comment-char 1 t nil 0 sp-point-in-string sp-get-string sp-get-sexp plist-get :beg :end sp-point-in-comment sp-get-comment-bounds sp-skip-backward-to-symbol sp-skip-forward-to-symbol :op "" :cl :prefix] 17 (#$ . 188836)])
#@411 Return the information about expressions inside LST.
 
LST should be a data structure in format as returned by
`sp-get-sexp'.
 
The return value is a list of such structures in order as they
occur inside LST describing each expression, with LST itself
prepended to the front.
 
If LST is nil, the list at point is used (that is the list
following point after `sp-backward-up-sexp' is called).
 
(fn &optional LST)
(defalias 'sp-get-list-items #[256 "\300\212\204\n\301 \262\2057\302\303\"\302\304\"G\\\262b\210`\302\305\"\262W\2032\306 B\262\202A\237B)\207" [nil sp-backward-up-sexp plist-get :beg :op :end sp-forward-sexp] 7 (#$ . 189948)])
#@489 Get the prefix of EXPR.
 
Prefix is any continuous sequence of characters in "expression
prefix" syntax class.  You can also specify a set of syntax code
characters or a regexp for a specific major mode.  See
`sp-sexp-prefix'.
 
The point is expected to be at the opening delimiter of the sexp
and the prefix is searched backwards.
 
If the prefix property is defined for OP, the associated regexp
is used to retrieve the prefix instead of the global setting.
 
(fn &optional (P (point)) OP)
(defalias 'sp--get-prefix #[128 "\211\203 \211A\262\242\202`\211A\262\242\203#\305\306\307\310G\\D\"\210\203\330\311\212b\210\312\313\"\211\203B\314    \"\205\201\315\316!\202\201\317\n \"A\211\203x\211@\320=\203`\314A@!\203`\315\316!\202\211@\321=\203t\322A@!\210\323`\"\202\324\202\325 \210\323`\"\262b\210\316GW\203\321\326\327\"\204\315\326\311\f\330\316\203\302\203\302@\203\253\311\262\202\266\211A\232\203\266\211\262\210\211T\262A\262\202\227\266\211\262@\327\"\203\321\324\202\322\211\266\202*\202\204\212b\210\312\313\"\211\203\361\314    \"\2050\315\316!\2020\317\n \"A\211\203'\211@\320=\203\314A@!\203\315\316!\202.\211@\321=\203#\322A@!\210\323`\"\202.\324\202.\325 \210\323`\"\262b\210\316GW\203\200\326\327\"\204|\326\311\f\330\316\203q\203q@\203Z\311\262\202e\211A\232\203e\211\262\210\211T\262A\262\202F\266\211\262@\327\"\203\200\324\202\201\211\266\202)\207" [case-fold-search sp-max-prefix-length major-mode sp-sexp-prefix sp-pair-list signal wrong-number-of-arguments sp--get-prefix 2 nil sp-get-pair :prefix sp--looking-back match-string-no-properties 0 assoc regexp syntax skip-syntax-backward buffer-substring-no-properties "" backward-prefix-chars sp--do-action-p navigate t] 13 (#$ . 190612)])
#@389 Get the suffix of EXPR.
 
Suffix is any continuous sequence of characters in the
"punctuation suffix" syntax class.  You can also specify a set
of syntax code characters or a regexp for a specific major mode.
See `sp-sexp-suffix'.
 
If the suffix property is defined for OP, the associated regexp
is used to retrieve the suffix instead of the global setting.
 
(fn &optional (P (point)) OP)
(defalias 'sp--get-suffix #[128 "\211\203 \211A\262\242\202`\211A\262\242\203#\304\305\306\307G\\D\"\210\203\330\310\212b\210\311\312\"\211\203A\313!\205\201\314\315!\202\201\316    \n\"A\211\203w\211@\317=\203_\313A@!\203_\314\315!\202\211@\320=\203s\321A@!\210\322`\"\202\323\202\321\324!\210\322`\"\262b\210\315GW\203\321\325\326\"\204\315\325\310 \327\315\203\302\203\302@\203\253\310\262\202\266\211A\232\203\266\211\262\210\211T\262A\262\202\227\266\211\262@\326\"\203\321\323\202\322\211\266\202*\202\204\212b\210\311\312\"\211\203\360\313!\2050\314\315!\2020\316    \n\"A\211\203&\211@\317=\203\313A@!\203\314\315!\202.\211@\320=\203\"\321A@!\210\322`\"\202.\323\202.\321\324!\210\322`\"\262b\210\315GW\203\200\325\326\"\204|\325\310 \327\315\203q\203q@\203Z\310\262\202e\211A\232\203e\211\262\210\211T\262A\262\202F\266\211\262@\326\"\203\200\323\202\201\211\266\202)\207" [case-fold-search major-mode sp-sexp-suffix sp-pair-list signal wrong-number-of-arguments sp--get-suffix 2 nil sp-get-pair :suffix sp--looking-at match-string-no-properties 0 assoc regexp syntax skip-syntax-forward buffer-substring-no-properties "" "." sp--do-action-p navigate t] 13 (#$ . 192430)])
#@342 Find the nearest symbol that is after point, or before point if BACK is non-nil.
 
This also means, if the point is inside a symbol, this symbol is
returned.  Symbol is defined as a chunk of text recognized by
`sp-forward-symbol'.
 
The return value is a plist with the same format as the value
returned by `sp-get-sexp'.
 
(fn &optional BACK)
(defalias 'sp-get-symbol #[256 "\300 \210\301\211\211\212\203(\302 \210`eU\203\303\262\304\305!\210`\262\304\306!\210`\262\202B\307 \210`dU\2034\303\262\304\306!\210`\262\304\305!\210`\262)\211?\205\\\310\311\312\313\314\313\315\316\f!\317\320 !\257\f\207" [sp--maybe-init nil sp-skip-backward-to-symbol t sp-forward-symbol -1 1 sp-skip-forward-to-symbol :beg :end :op "" :cl :prefix sp--get-prefix :suffix sp--get-suffix] 17 (#$ . 194109)])
#@181 Return the `sp-get-sexp' format info about the string.
 
This function simply transforms BOUNDS, which is a cons (BEG
. END) into format compatible with `sp-get-sexp'.
 
(fn BOUNDS)
(defalias 'sp--get-string #[257 "\300@f!\300A\206\f`Sf!\232\2052\301@\302A\303\304\305\306\f@\f\"\307\310A \"\257\f\207" [char-to-string :beg :end :op :cl :prefix sp--get-prefix :suffix sp--get-suffix] 17 (#$ . 194916)])
#@436 Find the nearest string after point, or before if BACK is non-nil.
 
This also means if the point is inside a string, this string is
returned.  If there are another symbols between point and the
string, nil is returned.  That means that this function only
return non-nil if the string is the very next meaningful
expression.
 
The return value is a plist with the same format as the value
returned by `sp-get-sexp'.
 
(fn &optional BACK)
(defalias 'sp-get-string #[256 "\300 \210\301 \203\f\302!\207\303 \203\304 \305!\207\212\306!\210\304 \211\205%\305!\262)\207" [sp--maybe-init sp-point-in-comment sp-get-stringlike-expression sp-point-in-string sp-get-quoted-string-bounds sp--get-string sp-skip-into-string] 4 (#$ . 195340)])
#@112 Get the whitespace around point.
 
Whitespace here is defined as any of the characters: space, tab
and newline.
(defalias 'sp-get-whitespace #[0 "\300\212\301\302x\210`)\303\212\301\302w\210`)\304\305\306\305\307\305\310\305\257\f\207" [:beg "     \n" nil :end :op "" :cl :prefix :suffix] 12 (#$ . 196084)])
#@14 
 
(fn MATCH)
(defalias 'sp--sgml-get-tag-name #[257 "\211\300\301O\302\232\203\211\301\303O\202\211\300\303O\304\305\"@\207" [1 2 "/" nil split-string "\\( \\|>\\)"] 5 (#$ . 196394)])
#@12 
 
(fn TAG)
(defalias 'sp--sgml-opening-p #[257 "\211\300\301O\302\232?\207" [1 2 "/"] 4 (#$ . 196589)])
#@77 Return non-nil if tag should be ignored in search, nil otherwise.
 
(fn TAG)
(defalias 'sp--sgml-ignore-tag #[257 "\211\300\235\207" [("!--" "!DOCTYPE")] 3 (#$ . 196699)])
#@23 
 
(fn &optional BACK)
(defalias 'sp-get-sgml-tag #[256 "\301 \210\203H\302\212\211\204\303\202\304\302\211\211\211\211\211\211\305\302\306#\205D\307\310\311!!\262\312!\262\313!?\205D\314P\262\315!\211\203J\303\202K\304\316\212 \204a`\262\304\317\302\306#\210`\262\202m`\262\320\321\302\306#\210`\262) \204~\204~\311\224b\210\202\213 \203\213\203\213\311\225b\210\211\311V\203\314\302\306#\203\306\315\310\311!!\203\264\203\255\211T\262\202\213\211S\262\202\213\203\277\211S\262\202\213\211T\262\202\213\322\262\202\213\211\322=\203\332\323\324!\210\302\202B\212\203\357\311\224\262\320\321\302\306#\210`\262\202\373`\262\320\321\302\306#\210`\262)\325\"\325\"\326\203    \202\327\203\202!\n\330    \203,\202-\331 \2038\202:\332\333\334\333\257\f\266\202\266\203\266\210*\207\212\211\204Q\303\202R\304\302\211\211\211\211\211\211\305\302\306#\205\203\307\310\311!!\262\312!\262\313!?\205\203\314P\262\315!\211\203\211\303\202\212\304\316\212 \204\240`\262\304\317\302\306#\210`\262\202\254`\262\320\321\302\306#\210`\262) \204\275\204\275\311\224b\210\202\312 \203\312\203\312\311\225b\210\211\311V\203 \302\306#\203\315\310\311!!\203\363\203\354\211T\262\202\312\211S\262\202\312\203\376\211S\262\202\312\211T\262\202\312\322\262\202\312\211\322=\203\323\324!\210\302\202\201\212\203.\311\224\262\320\321\302\306#\210`\262\202:`\262\320\321\302\306#\210`\262)\325\"\325\"\326\203Q    \202S\327\203^\202`\n\330    \203k\202l\331 \203w\202y\332\333\334\333\257\f\266\202\266\203\266\210)\207" [case-fold-search sp--maybe-init nil sp--search-forward-regexp search-backward-regexp "</?.*?\\s-?.*?>" t substring-no-properties match-string 0 sp--sgml-get-tag-name sp--sgml-ignore-tag "</?" sp--sgml-opening-p 1 "<" search-forward-regexp ">" -1 sp-message :no-matching-tag buffer-substring-no-properties :beg :end :op :cl :prefix "" :suffix] 26 (#$ . 196876)])
#@456 Compute the "end-delimiter" closure of set PAIRS.
 
PAIRS can be:
- single pair ID
- single cons with opening and closing delimiter
- list of pair IDs
- list of conses of opening and closing delimiters
 
For example, if we have pairs (if . end) and (def . end), then
the closure of "if" pair are both of these because they share
the closing delimiter.  Therefore, in the navigation functions,
both have to be considered by the parser.
 
(fn PAIRS PAIR-LIST)
(defalias 'sp--end-delimiter-closure #[514 "\300C!\211@:\203\301\302\"\202\211\303\304\2033@\211@\235\203'\211B\262\210\211T\262A\262\202\266\211\237\262\305\306\307\310\311\312    !\313\"\314\315%\"\207" [-flatten -map car nil 0 -mapcat make-byte-code 257 "\301\300\302\203\"@AA\232\203\211B\262\210\211T\262A\262\202\266\211\237\207" vconcat vector [nil 0] 7 "\n\n(fn X)"] 12 (#$ . 198931)])
#@296 Call the FUNCTION restricted to PAIRS.
 
PAIRS is either an opening delimiter of a list of opening
delimiters.
 
FUNCTION is a function symbol.
 
For example, you can restrict function `sp-down-sexp' to the
pair ("{" . "}") for easier navigation of blocks in C-like
languages.
 
(fn PAIRS FUNCTION)
(defalias 'sp-restrict-to-pairs #[514 "\301C!\302\303\203%@\211@\235\203\211B\262\210\211T\262A\262\202\266\211\237\262\304\"\305!)\207" [sp-pair-list -flatten nil 0 sp--end-delimiter-closure call-interactively] 9 (#$ . 199822)])
#@532 Call the FUNCTION restricted to OBJECT.
 
OBJECT is one of following symbols (you have to quote it!):
- `sp-prefix-pair-object'
- `sp-prefix-tag-object'
- `sp-prefix-symbol-object'
 
This function will enable this prefix and then call FUNCTION.
 
FUNCTION is a function symbol.
 
This function is equivalent to doing:
 
  (let ((sp-prefix-object t))
    (call-interactively function))
 
For example, you can restrict function `sp-forward-sexp' to just
the pairs for easier navigation of blocks in C-like languages.
 
(fn OBJECT FUNCTION)
(defalias 'sp-restrict-to-object #[514 "\211J\300\301\302\303\304\"\305\"\306$\216\307L\210\310!)\207" [make-byte-code 0 "\300\301L\207" vconcat vector [] 2 t call-interactively] 11 (#$ . 200375)])
#@605 Return an interactive lambda that calls FUNCTION restricted to PAIRS.
 
See `sp-restrict-to-pairs'.
 
This function implements a "decorator pattern", that is, you
can apply another scoping function to the output of this function
and the effects will added together. In particular, you can
combine it with:
 
- `sp-restrict-to-object-interactive'
 
You can also bind the output of this function directly to a key, like:
 
  (global-set-key (kbd ...) (sp-restrict-to-pairs-interactive "{" 'sp-down-sexp))
 
This will be a function that descends down only into { } pair,
ignoring all others.
 
(fn PAIRS FUNCTION)
(defalias 'sp-restrict-to-pairs-interactive #[514 "\300\301\302\303\304\"\305\"\306\307\310&\207" [make-byte-code 256 "\302\300\301\"\207" vconcat vector [sp-restrict-to-pairs] 4 "\n\n(fn &optional ARG)" "P"] 9 (#$ . 201118)])
#@709 Return an interactive lambda that calls FUNCTION restricted to OBJECT.
 
See `sp-restrict-to-object'.
 
This function implements a "decorator pattern", that is, you
can apply another scoping function to the output of this function
and the effects will added together. In particular, you can
combine it with:
 
- `sp-restrict-to-pairs-interactive'
 
You can also bind the output of this function directly to a key, like:
 
  (global-set-key (kbd ...) (sp-restrict-to-object-interactive
                             'sp-prefix-pair-object
                             'sp-forward-sexp))
 
This will be a function that navigates only by using paired
expressions, ignoring strings and sgml tags.
 
(fn OBJECT FUNCTION)
(defalias 'sp-restrict-to-object-interactive #[514 "\300\301\302\303\304\"\305\"\306\307\310&\207" [make-byte-code 256 "\302\300\301\"\207" vconcat vector [sp-restrict-to-object] 4 "\n\n(fn &optional ARG)" "P"] 9 (#$ . 201961)])
#@400 Read the command and invoke it on the next tag object.
 
If you specify a regular emacs prefix argument this is passed to
the executed command.  Therefore, executing
"\[universal-argument] 2 \[sp-prefix-tag-object] \[sp-forward-sexp]" will move two tag
expressions forward, ignoring possible symbols or paired
expressions inbetween.
 
Tag object is anything delimited by sgml tag.
 
(fn &optional ARG)
(defalias 'sp-prefix-tag-object #[256 "\301\302\303\"\304!\303\305!\203\306!\202\307!)\207" [sp-prefix-tag-object read-key-sequence "" t key-binding commandp call-interactively execute-kbd-macro] 5 (#$ . 202910) "P"])
#@401 Read the command and invoke it on the next pair object.
 
If you specify a regular emacs prefix argument this is passed to
the executed command.  Therefore, executing
"\[universal-argument] 2 \[sp-prefix-pair-object] \[sp-forward-sexp]" will move two paired
expressions forward, ignoring possible symbols inbetween.
 
Pair object is anything delimited by pairs from `sp-pair-list'.
 
(fn &optional ARG)
(defalias 'sp-prefix-pair-object #[256 "\301\302\303\"\304!\303\305!\203\306!\202\307!)\207" [sp-prefix-pair-object read-key-sequence "" t key-binding commandp call-interactively execute-kbd-macro] 5 (#$ . 203543) "P"])
#@387 Read the command and invoke it on the next pair object.
 
If you specify a regular emacs prefix argument this is passed to
the executed command.  Therefore, executing
"\[universal-argument] 2 \[sp-prefix-symbol-object] \[sp-forward-sexp]" will move two symbols
forward, ignoring any structure.
 
Symbol is defined as a chunk of text recognized by
`sp-forward-symbol'.
 
(fn &optional ARG)
(defalias 'sp-prefix-symbol-object #[256 "\301\302\303\"\304!\303\305!\203\306!\202\307!)\207" [sp-prefix-symbol-object read-key-sequence "" t key-binding commandp call-interactively execute-kbd-macro] 5 (#$ . 204179) "P"])
#@154 Execute the command keeping the point fixed.
 
If you specify a regular emacs prefix argument this is passed to
the executed command.
 
(fn &optional ARG)
(defalias 'sp-prefix-save-excursion #[256 "\300\301\302\"\303!i\304 \212\305!\203\306!\210\202\307!\210)\310\"\266\202\207" [read-key-sequence "" t key-binding sp--current-indentation commandp call-interactively execute-kbd-macro sp--back-to-indentation] 8 (#$ . 204805) "P"])
#@286 Find next thing after point, or before if BACK is non-nil.
 
Thing is either symbol (`sp-get-symbol'),
string (`sp-get-string') or balanced expression recognized by
`sp-get-sexp'.
 
If `sp-navigate-consider-symbols' is nil, only balanced
expressions are considered.
 
(fn &optional BACK)
(defalias 'sp-get-thing #[256 "\306 \210\203\215\307    \203\310!\202\213\n\203\311!\202\213 \203'\312!\202\213\211\203M\f\2045\313\314!\202\213\212\315 \203A\316\314!\202I\317\314\307\314#\210 4>\203`\320\321!\204Z\322\321!\203`\310\314!\206I\320\323\324 !\307\"\203\302\325\326!\327\330\"\206\255\327\3075\314\326\203\245\203\245@\203\216\307\262\202\231\211A\232\203\231\211\262\210\211T\262A\262\202z\266\211\262@\330\"\331\326\224\326\225\332%?\266\202\203\302\313\314!\202I\320\333\324 !\307\"\203$\325\326!\327\330\"\206\327\3075\314\326\203\203@\203\360\307\262\202\373\211A\232\203\373\211\262\210\211T\262A\262\202\334\266\211\262@\330\"\331\326\224\326\225\332%?\266\202\203$\313\314!\202I\334\335`S!!\336=\203]\337`S!\204]\340 \314=\203W\212\214~\210\341 \211\211A\262\242}\266\342\314!*\202I\316\314!\202I\320\343 \307\"\203\275\325\326!\327\330\"\206\250\327\3075\314\326\203\240\203\240@\203\211\307\262\202\224\211A\232\203\224\211\262\210\211T\262A\262\202u\266\211\262@\330\"\331\326\224\326\225\332%?\266\202\203\275\344\314!\202I\312\314!\211\205G\212\211\345\346\"b\266\347\333\324 !!\203E\325\326!\327\330\"\206\327\3075\314\326\203\203@\203\372\307\262\202\211A\232\203\211\262\210\211T\262A\262\202\346\266\211\262@\330\"\331\326\224\326\225\332%?\266\202\203E\325\326!\350`\"\211\203?\211\351\232\204?\313\314!\202@\266\202\202F\211)\262)\202\213\f\204W\313\307!\202\213\212\315 \203c\316\307!\202\212\352\314\307\314#\210 4>\203\212\322\353!\204\205\320\354`\355Z\"\203\212\326\224b\203\212\310 \206\212\347\333\324 !!\203\353\325\326!\327\330\"\206\326\327\3075\314\326\203\316\203\316@\203\267\307\262\202\302\211A\232\203\302\211\262\210\211T\262A\262\202\243\266\211\262@\330\"\331\326\224\326\225\332%?\266\202\203\353\313\307!\202\212\347\323\324 !!\203L\325\326!\327\330\"\2067\327\3075\314\326\203/\203/@\203\307\262\202#\211A\232\203#\211\262\210\211T\262A\262\202\266\211\262@\330\"\331\326\224\326\225\332%?\266\202\203L\313\307!\202\212\334\335`!!\336=\203\202\337 \204\202\340 \314=\203|\212\214~\210\341 \211\211A\262\242}\266\342\307!*\202\212\316\307!\202\212\347\343 !\203\341\325\326!\327\330\"\206\314\327\3075\314\326\203\304\203\304@\203\255\307\262\202\270\211A\232\203\270\211\262\210\211T\262A\262\202\231\266\211\262@\330\"\331\326\224\326\225\332%?\266\202\203\341\344\307!\202\212\312\307!\211\205\365\211\356\345\357\"\345\346\"\"\262`\205\210\360\333\361\362!!\307\314#\203\207\325\326!\327\330\"\206I\327\3075\314\326\203A\203A@\203*\307\262\2025\211A\232\2035\211\262\210\211T\262A\262\202\266\211\262@\330\"\331\326\224\326\225\332%?\266\202\203\207\325\326!\211G\206a\363[u\210\350`\"\211\203\201\211\351\232\204\201`GZY\203\201\313\307!\202\202\266\202\202\210\266\203))\207    \203\225\310!\207\n\203\235\311!\207 \203\245\312!\207\211\203\307\f\204\261\313\314!\207\212\315 \203\275\316\314!\202\305\317\314\307\314#\210 4>\203\334\320\321!\204\326\322\321!\203\334\310\314!\206\305\320\323\324 !\307\"\203>\325\326!\327\330\"\206)\327\3075\314\326\203!\203!@\203\n\307\262\202\211A\232\203\211\262\210\211T\262A\262\202\366\266\211\262@\330\"\331\326\224\326\225\332%?\266\202\203>\313\314!\202\305\320\333\324 !\307\"\203\240\325\326!\327\330\"\206\213\327\3075\314\326\203\203\203\203@\203l\307\262\202w\211A\232\203w\211\262\210\211T\262A\262\202X\266\211\262@\330\"\331\326\224\326\225\332%?\266\202\203\240\313\314!\202\305\334\335`S!!\336=\203\331\337`S!\204\331\340 \314=\203\323\212\214~\210\341 \211\211A\262\242}\266\342\314!*\202\305\316\314!\202\305\320\343 \307\"\2039\325\326!\327\330\"\206$\327\3075\314\326\203\203@\203\307\262\202\211A\232\203\211\262\210\211T\262A\262\202\361\266\211\262@\330\"\331\326\224\326\225\332%?\266\202\2039\344\314!\202\305\312\314!\211\205\303\212\211\345\346\"b\266\347\333\324 !!\203\301\325\326!\327\330\"\206\225\327\3075\314\326\203\215\203\215@\203v\307\262\202\201\211A\232\203\201\211\262\210\211T\262A\262\202b\266\211\262@\330\"\331\326\224\326\225\332%?\266\202\203\301\325\326!\350`\"\211\203\273\211\351\232\204\273\313\314!\202\274\266\202\202\302\211)\262)\207\f\204\317\313\307!\207\212\315 \203\333\316\307!\202    \352\314\307\314#\210 4>\203\322\353!\204\375\320\354`\355Z\"\203\326\224b\203\310 \206    \347\333\324 !!\203c\325\326!\327\330\"\206N\327\3075\314\326\203F\203F@\203/\307\262\202:\211A\232\203:\211\262\210\211T\262A\262\202\266\211\262@\330\"\331\326\224\326\225\332%?\266\202\203c\313\307!\202    \347\323\324 !!\203\304\325\326!\327\330\"\206\257\327\3075\314\326\203\247\203\247@\203\220\307\262\202\233\211A\232\203\233\211\262\210\211T\262A\262\202|\266\211\262@\330\"\331\326\224\326\225\332%?\266\202\203\304\313\307!\202    \334\335`!!\336=\203\372\337 \204\372\340 \314=\203\364\212\214~\210\341 \211\211A\262\242}\266\342\307!*\202    \316\307!\202    \347\343 !\203Y\325\326!\327\330\"\206D\327\3075\314\326\203<\203<@\203%\307\262\2020\211A\232\2030\211\262\210\211T\262A\262\202\266\211\262@\330\"\331\326\224\326\225\332%?\266\202\203Y\344\307!\202    \312\307!\211\205m\211\356\345\357\"\345\346\"\"\262`\205    \360\333\361\362!!\307\314#\203\377\325\326!\327\330\"\206\301\327\3075\314\326\203\271\203\271@\203\242\307\262\202\255\211A\232\203\255\211\262\210\211T\262A\262\202\216\266\211\262@\330\"\331\326\224\326\225\332%?\266\202\203\377\325\326!\211G\206\331\363[u\210\350`\"\211\203\371\211\351\232\204\371`GZY\203\371\313\307!\202\372\266\202\202    \266\203)\207" [case-fold-search sp-prefix-tag-object sp-prefix-pair-object sp-prefix-symbol-object sp-navigate-consider-symbols major-mode sp--maybe-init nil sp-get-sgml-tag sp-get-paired-expression sp-get-symbol sp-get-sexp t sp-point-in-empty-string sp-get-string sp-skip-backward-to-symbol sp--looking-back ">" looking-at sp--get-closing-regexp sp--get-allowed-pair-list match-string 0 sp-get-pair :skip-match sp--skip-match-p :pair-skip sp--get-opening-regexp syntax-class syntax-after 7 sp-char-is-escaped-p sp-point-in-string sp-get-quoted-string-bounds sp-get-stringlike-expression sp--get-stringlike-regexp sp-get-expression plist-get :end sp--looking-at sp--get-prefix "" sp-skip-forward-to-symbol "<" "</?" 2 buffer-substring-no-properties :beg sp--search-forward-regexp sp--get-pair-list-context navigate 1 sp-navigate-consider-sgml-tags sp-pair-list] 13 (#$ . 205252)])
#@191 Make text outside current balanced expression invisible.
A numeric arg specifies to move up by that many enclosing expressions.
 
See also `narrow-to-region' and `narrow-to-defun'.
 
(fn ARG)
(defalias 'sp-narrow-to-sexp #[257 "\300!\211\205\211\301\302\"\301\303\"GZ\301\304\"}\262\207" [sp-get-enclosing-sexp plist-get :beg :prefix :end] 7 (#$ . 212421) "p"])
#@559 Move forward across one balanced expression.
 
With ARG, do it that many times.  Negative arg -N means move
backward across N balanced expressions.  If there is no forward
expression, jump out of the current one (effectively doing
`sp-up-sexp').
 
With `sp-navigate-consider-symbols' symbols and strings are also
considered balanced expressions.
 
Examples: (prefix arg in comment)
 
  |(foo bar baz)   -> (foo bar baz)|
 
  (|foo bar baz)   -> (foo| bar baz)
 
  (|foo bar baz)   -> (foo bar| baz) ;; 2
 
  (foo (bar baz|)) -> (foo (bar baz)|)
 
(fn &optional ARG)
(defalias 'sp-forward-sexp #[256 "\211\206\300\262\211\301W\203\302[!\207\211\303\211\2036\301V\2036\304 \262S\262\211\203\211\305\306\"\262b\210\202\207" [1 0 sp-backward-sexp t sp-get-thing plist-get :end] 7 (#$ . 212795) "^p"])
(put 'sp-forward-sexp 'CUA 'move)
#@576 Move backward across one balanced expression (sexp).
 
With ARG, do it that many times.  Negative arg -N means move
forward across N balanced expressions.  If there is no previous
expression, jump out of the current one (effectively doing
`sp-backward-up-sexp').
 
With `sp-navigate-consider-symbols' symbols and strings are also
considered balanced expressions.
 
Examples: (prefix arg in comment)
 
  (foo bar baz)|   -> |(foo bar baz)
 
  (foo| bar baz)   -> (|foo bar baz)
 
  (foo bar| baz)   -> (|foo bar baz) ;; 2
 
  (|(foo bar) baz) -> ((|foo bar) baz)
 
(fn &optional ARG)
(defalias 'sp-backward-sexp #[256 "\211\206\300\262\211\301W\203\302[!\207\211\303\211\2037\301V\2037\304\303!\262S\262\211\203\211\305\306\"\262b\210\202\207" [1 0 sp-forward-sexp t sp-get-thing plist-get :beg] 7 (#$ . 213643) "^p"])
(put 'sp-backward-sexp 'CUA 'move)
#@875 Move forward to the beginning of next balanced expression.
 
With ARG, do it that many times.  If there is no next expression
at current level, jump one level up (effectively doing
`sp-backward-up-sexp').  Negative arg -N means move to the
beginning of N-th previous balanced expression.
 
If `sp-navigate-interactive-always-progress-point' is non-nil,
and this is called interactively, the point will move to the
first expression in forward direction where it will end up
greater than the current location.
 
With `sp-navigate-consider-symbols' symbols and strings are also
considered balanced expressions.
 
Examples:
 
  ((foo) |bar (baz quux)) -> ((foo) bar |(baz quux))
 
  ((foo) bar |(baz quux)) -> |((foo) bar (baz quux))
 
and with non-nil `sp-navigate-interactive-always-progress-point'
 
  (f|oo bar) -> (foo |bar)
 
  ((fo|o) (bar)) -> ((foo) |(bar))
 
(fn &optional ARG)
(defalias 'sp-next-sexp #[256 "\211\206\301\262\211\302X\203\303[!\207\203J\304\305!\203J\302W\203?`\306 \211\2052\211\307\310\"\262X\262\204#\210\211S\262\202\311\312!\307\310\"\262b\207\211\301U\203v\311 \211\205u`\307\310\"\262U\203k\306\313!\210\303 \202u\211\307\310\"\262b\210\211\207\306!\210\303 \207" [sp-navigate-interactive-always-progress-point 1 0 sp-backward-sexp called-interactively-p any sp-forward-sexp plist-get :beg sp-get-thing t 2] 7 (#$ . 214513) "^p"])
(put 'sp-next-sexp 'CUA 'move)
#@871 Move backward to the end of previous balanced expression.
 
With ARG, do it that many times.  If there is no next
expression at current level, jump one level up (effectively
doing `sp-up-sexp').  Negative arg -N means move to the end of
N-th following balanced expression.
 
With `sp-navigate-consider-symbols' symbols and strings are also
considered balanced expressions.
 
If `sp-navigate-interactive-always-progress-point' is non-nil,
and this is called interactively, the point will move to the
first expression in backward direction where it will end up
less than the current location.
 
Examples:
 
  ((foo) bar| (baz quux)) -> ((foo)| bar (baz quux))
 
  ((foo)| bar (baz quux)) -> ((foo) bar (baz quux))|
 
and if `sp-navigate-interactive-always-progress-point' is non-nil
 
  (foo b|ar baz) -> (foo| bar baz)
 
  (foo (b|ar baz)) -> (foo| (bar baz))
 
(fn &optional ARG)
(defalias 'sp-previous-sexp #[256 "\211\206\301\262\211\302X\203\303[!\207\203C\302W\2039`\304 \211\205,\211\305\306\"\262Y\262\204\210\211S\262\202\307 \305\306\"\262b\207\211\301U\203p\307\310!\211\205o`\305\306\"\262U\203e\304\311!\210\303 \202o\211\305\306\"\262b\210\211\207\304!\210\303 \207" [sp-navigate-interactive-always-progress-point 1 0 sp-forward-sexp sp-backward-sexp plist-get :end sp-get-thing t 2] 7 (#$ . 215934) "^p"])
(put 'sp-previous-sexp 'CUA 'move)
#@297 Move forward across one balanced expressions at the same depth.
 
If calling `sp-forward-sexp' at point would result in raising a
level up, loop back to the first expression at current level,
that is the first child of the enclosing sexp as defined by
`sp-get-enclosing-sexp'.
 
(fn &optional ARG)
(defalias 'sp-forward-parallel-sexp #[256 "\211\206\300\262\211\301W\203\302[!\207\303\301V\203xS\262\304 \304\305!\303=\2030eb\210\306 \202s\211\303=\203C\307\310\"\262b\210\202s\307\311\"\262\307\311\"\262V\203b\307\310\"\262b\210\202s\307\311\"\307\312\"G\\\262b\210\306 \266\203\202\211\207" [1 0 sp-backward-parallel-sexp nil sp-get-thing t sp-forward-sexp plist-get :end :beg :op] 9 (#$ . 217317) "^p"])
#@297 Move backward across one balanced expressions at the same depth.
 
If calling `sp-backward-sexp' at point would result in raising a
level up, loop back to the last expression at current level, that
is the last child of the enclosing sexp as defined by
`sp-get-enclosing-sexp'.
 
(fn &optional ARG)
(defalias 'sp-backward-parallel-sexp #[256 "\211\206\300\262\211\301W\203\302[!\207\303\301V\203xS\262\304 \304\305!\211\303=\2030db\210\306 \202s\303=\203C\211\307\310\"\262b\210\211\202s\211\307\311\"\262\307\311\"\262W\203b\211\307\310\"\262b\210\211\202s\211\307\311\"\307\312\"GZ\262b\210\306 \266\203\202\211\207" [1 0 sp-forward-parallel-sexp nil sp-get-thing t sp-backward-sexp plist-get :beg :end :cl] 9 (#$ . 218067) "^p"])
#@78 Return t if ARG represents raw argument, that is a non-empty list.
 
(fn ARG)
(defalias 'sp--raw-argument-p #[257 "\211<\205\211@\207" [] 2 (#$ . 218834)])
#@262 Return the argument ARG but negated.
 
If the argument is a raw prefix argument (cons num nil) return a
list with its car negated.  If the argument is just the - symbol,
return 1.  If the argument is nil, return -1.  Otherwise negate
the input number.
 
(fn ARG)
(defalias 'sp--negate-argument #[257 "\300!\203 \211@[C\207\211\301=\203\302\207\211\204\303\207\211[\207" [sp--raw-argument-p - 1 -1] 3 (#$ . 218998)])
#@897 Move forward down one level of sexp.
 
With ARG, do this that many times.  A negative argument -N means
move backward but still go down a level.
 
If ARG is raw prefix argument \[universal-argument], descend forward as much as
possible.
 
If ARG is raw prefix argument \[universal-argument] \[universal-argument], jump to the beginning of
current list.
 
If the point is inside sexp and there is no down expression to
descend to, jump to the beginning of current one.  If moving
backwards, jump to end of current one.
 
Examples:
 
  |foo (bar (baz quux)) -> foo (|bar (baz quux))
 
  |foo (bar (baz quux)) -> foo (bar (|baz quux)) ;; 2
 
  |foo (bar (baz (quux) blab)) -> foo (bar (baz (|quux) blab)) ;; \[universal-argument]
 
  (foo (bar baz) |quux) -> (|foo (bar baz) quux)
 
  (blab foo |(bar baz) quux) -> (|blab foo (bar baz) quux) ;; \[universal-argument] \[universal-argument]
 
(fn &optional ARG)
(defalias 'sp-down-sexp #[256 "\300!\301!\302!\303\304\203K\302!\305U\203K\306 \211\203G\307V\2035\211\310\311\"\310\312\"G\\\262b\210\202D\211\310\313\"\310\314\"GZ\262b\210\211\262\210\202\241\203\241\307V\203\241\315\307W!\262\203l`U\203p\304\262\202pS\262\203K`\262\307W\203\217\310\313\"\310\314\"GZ\262b\210\202K\310\311\"\310\312\"G\\\262b\210\202K\207" [sp--raw-argument-p prefix-numeric-value abs t -1 16 sp-get-enclosing-sexp 0 plist-get :beg :op :end :cl sp-get-sexp] 12 (#$ . 219425) "^P"])
(put 'sp-down-sexp 'CUA 'move)
#@890 Move backward down one level of sexp.
 
With ARG, do this that many times.  A negative argument -N means
move forward but still go down a level.
 
If ARG is raw prefix argument \[universal-argument], descend backward as much as
possible.
 
If ARG is raw prefix argument \[universal-argument] \[universal-argument], jump to the end of current
list.
 
If the point is inside sexp and there is no down expression to
descend to, jump to the end of current one.  If moving forward,
jump to beginning of current one.
 
Examples:
 
  foo (bar (baz quux))| -> foo (bar (baz quux)|)
 
  (bar (baz quux)) foo| -> (bar (baz quux|)) foo ;; 2
 
  foo (bar (baz (quux) blab))| -> foo (bar (baz (quux|) blab)) ;; \[universal-argument]
 
  (foo| (bar baz) quux) -> (foo (bar baz) quux|)
 
  (foo (bar baz) |quux blab) -> (foo (bar baz) quux blab|) ;; \[universal-argument] \[universal-argument]
 
(fn &optional ARG)
(defalias 'sp-backward-down-sexp #[256 "\300\301!!\207" [sp-down-sexp sp--negate-argument] 4 (#$ . 220911) "^P"])
(put 'sp-backward-down-sexp 'CUA 'move)
#@1030 Jump to beginning of the sexp the point is in.
 
The beginning is the point after the opening delimiter.
 
With no argument, this is the same as calling
\[universal-argument] \[universal-argument] `sp-down-sexp'
 
With ARG positive N > 1, move forward out of the current
expression, move N-2 expressions forward and move down one level
into next expression.
 
With ARG negative -N < 1, move backward out of the current
expression, move N-1 expressions backward and move down one level
into next expression.
 
With ARG raw prefix argument \[universal-argument] move out of the current expressions
and then to the beginning of enclosing expression.
 
Examples:
 
  (foo (bar baz) quux| (blab glob)) -> (|foo (bar baz) quux (blab glob))
 
  (foo (bar baz|) quux (blab glob)) -> (foo (|bar baz) quux (blab glob))
 
  (|foo) (bar) (baz quux) -> (foo) (bar) (|baz quux) ;; 3
 
  (foo bar) (baz) (quux|) -> (|foo bar) (baz) (quux) ;; -3
 
  ((foo bar) (baz |quux) blab) -> (|(foo bar) (baz quux) blab) ;; \[universal-argument]
 
(fn &optional ARG)
(defalias 'sp-beginning-of-sexp #[256 "\300!\301!\203\211\302U\203\303 \210\304 \202H\211\305U\203$\306\307!\202H\211\310W\2037\311 \210\312T!\210\306 \202H\211\310V\205H\303 \210\312\313Z!\210\306 \314\315\316\"\262\317\320#\210\207" [sp--raw-argument-p prefix-numeric-value 4 sp-up-sexp sp-beginning-of-sexp 1 sp-down-sexp (16) 0 sp-backward-up-sexp sp-forward-sexp 2 sp--run-hook-with-args plist-get :op :post-handlers beginning-of-sexp] 9 (#$ . 221963) "^P"])
(put 'sp-beginning-of-sexp 'CUA 'move)
#@1049 Jump to end of the sexp the point is in.
 
The end is the point before the closing delimiter.
 
With no argument, this is the same as calling
\[universal-argument] \[universal-argument] `sp-backward-down-sexp'.
 
With ARG positive N > 1, move forward out of the current
expression, move N-1 expressions forward and move down backward
one level into previous expression.
 
With ARG negative -N < 1, move backward out of the current
expression, move N-2 expressions backward and move down backward
one level into previous expression.
 
With ARG raw prefix argument \[universal-argument] move out of the current expressions
and then to the end of enclosing expression.
 
Examples:
 
  (foo |(bar baz) quux (blab glob)) -> (foo (bar baz) quux (blab glob)|)
 
  (foo (|bar baz) quux (blab glob)) -> (foo (bar baz|) quux (blab glob))
 
  (|foo) (bar) (baz quux) -> (foo) (bar) (baz quux|) ;; 3
 
  (foo bar) (baz) (quux|) -> (foo bar|) (baz) (quux) ;; -3
 
  ((foo |bar) (baz quux) blab) -> ((foo bar) (baz quux) blab|) ;; \[universal-argument]
 
(fn &optional ARG)
(defalias 'sp-end-of-sexp #[256 "\300!\301!\203\211\302U\203\303 \210\304 \202H\211\305U\203$\306\307!\202H\211\310W\2038\311 \210\312\313\\!\210\314 \202H\211\310V\205H\303 \210\312S!\210\314 \315\316\317\"\262\320\321#\210\207" [sp--raw-argument-p prefix-numeric-value 4 sp-up-sexp sp-end-of-sexp 1 sp-down-sexp (-16) 0 sp-backward-up-sexp sp-forward-sexp 2 sp-backward-down-sexp sp--run-hook-with-args plist-get :op :post-handlers end-of-sexp] 9 (#$ . 223521) "^P"])
(put 'sp-end-of-sexp 'CUA 'move)
#@340 Jump to the beginning of next sexp on the same depth.
 
Optional argument ARG defaults to 1 and means how many times we
should repeat.
 
This acts exactly as `sp-beginning-of-sexp' but adds 1 to the
numeric argument.
 
Examples:
 
  (f|oo) (bar) (baz) -> (foo) (|bar) (baz)
 
  (f|oo) (bar) (baz) -> (foo) (bar) (|baz) ;; 2
 
(fn &optional ARG)
(defalias 'sp-beginning-of-next-sexp #[256 "\300!\203\n\301!\207\302!\211\303V\203\301T!\202\301S!\207" [sp--raw-argument-p sp-beginning-of-sexp prefix-numeric-value 0] 4 (#$ . 225097) "^P"])
(put 'sp-beginning-of-next-sexp 'CUA 'move)
#@356 Jump to the beginning of previous sexp on the same depth.
 
Optional argument ARG defaults to 1 and means how many times we
should repeat.
 
This acts exactly as `sp-beginning-of-sexp' with negative
argument but subtracts 1 from it.
 
Examples:
 
  (foo) (b|ar) (baz) -> (|foo) (bar) (baz)
 
  (foo) (bar) (b|az) -> (|foo) (bar) (baz) ;; 2
 
(fn &optional ARG)
(defalias 'sp-beginning-of-previous-sexp #[256 "\300!\203\f\301\302!!\207\303!\211\304V\203\301T[!\202\"\301S[!\207" [sp--raw-argument-p sp-beginning-of-sexp sp--negate-argument prefix-numeric-value 0] 4 (#$ . 225689) "^P"])
(put 'sp-beginning-of-previous-sexp 'CUA 'move)
#@328 Jump to the end of next sexp on the same depth.
 
Optional argument ARG defaults to 1 and means how many times we
should repeat.
 
This acts exactly as `sp-end-of-sexp' but adds 1 to the
numeric argument.
 
Examples:
 
  (f|oo) (bar) (baz) -> (foo) (bar|) (baz)
 
  (f|oo) (bar) (baz) -> (foo) (bar) (baz|) ;; 2
 
(fn &optional ARG)
(defalias 'sp-end-of-next-sexp #[256 "\300!\203\n\301!\207\302!\211\303V\203\301T!\202\301S!\207" [sp--raw-argument-p sp-end-of-sexp prefix-numeric-value 0] 4 (#$ . 226333) "^P"])
(put 'sp-end-of-next-sexp 'CUA 'move)
#@344 Jump to the end of previous sexp on the same depth.
 
Optional argument ARG defaults to 1 and means how many times we
should repeat.
 
This acts exactly as `sp-end-of-sexp' with negative
argument but subtracts 1 from it.
 
Examples:
 
  (foo) (b|ar) (baz) -> (foo|) (bar) (baz)
 
  (foo) (bar) (b|az) -> (foo|) (bar) (baz) ;; 2
 
(fn &optional ARG)
(defalias 'sp-end-of-previous-sexp #[256 "\300!\203\f\301\302!!\207\303!\211\304V\203\301T[!\202\"\301S[!\207" [sp--raw-argument-p sp-end-of-sexp sp--negate-argument prefix-numeric-value 0] 4 (#$ . 226895) "^P"])
(put 'sp-end-of-previous-sexp 'CUA 'move)
#@825 Move forward out of one level of parentheses.
 
With ARG, do this that many times.  A negative argument means
move backward but still to a less deep spot.
 
The argument INTERACTIVE is for internal use only.
 
If called interactively and `sp-navigate-reindent-after-up' is
enabled for current major-mode, remove the whitespace between end
of the expression and the last "thing" inside the expression.
 
If `sp-navigate-close-if-unbalanced' is non-nil, close the
unbalanced expressions automatically.
 
Examples:
 
  (foo |(bar baz) quux blab) -> (foo (bar baz) quux blab)|
 
  (foo (bar |baz) quux blab) -> (foo (bar baz) quux blab)| ;; 2
 
  (foo bar |baz              -> (foo bar baz)| ;; re-indent the expression
​   )
 
  (foo  |(bar baz)           -> (foo)| (bar baz) ;; close unbalanced expr.
 
(fn &optional ARG INTERACTIVE)
(defalias 'sp-up-sexp #[512 "\206\306\262\203\245\307\310\311!!\211\203j\312V\203(\211\313\314\"\262b\210\2021\211\313\315\"\262b\210\311!\306U\203\240\211\313\316\"\262    \232\204\240\n\317 \236>\204Y\n\320 \236>\203\240\203\240\f\204p\211\321\313\314\"\313\322\"GZ!?\262\203\240\321 \211?\206\210\313\323\"\262\324=\206\207\325!=\262\203\240\212\312V\203\377\211\313\314\"\313\322\"GZ\262b\210\326\324!\313\315\"\262\313\315\"\262\232\203\323\313\315\"\313\323\"G\\\313\314\"\313\322\"GZ|\266\202\373\212\327\307x\210`\313\314\"\313\330\"G\\\262U)\203\373\211\313\314\"\313\330\"G\\\262`|\210\210\202f\211\313\315\"\313\323\"G\\\262b\210\326 \313\315\"\262\313\315\"\262\232\203=\313\315\"\313\323\"G\\\313\314\"\313\322\"GZ|\266\202e\212\327\307w\210`\313\315\"\313\316\"GZ\262U)\203e`\313\315\"\313\316\"GZ\262|\210\210)\202\240\312V\203\240 \203\240\307\212\331 \204v\332\324!\210\333\334 !\203\220\335\312!\336 \"\266\202)\211\203\237\331 \210\337 \210\211Ac\210\210\211\262)\207\310\311!!\211\203\312V\203\300\211\313\314\"\262b\210\202\311\211\313\315\"\262b\210\311!\306U\2038\211\313\316\"\262    \232\2048\n\317 \236>\204\361\n\320 \236>\2038\2038\f\204\211\321\313\314\"\313\322\"GZ!?\262\2038\321 \211?\206 \313\323\"\262\324=\206\325!=\262\2038\212\312V\203\227\211\313\314\"\313\322\"GZ\262b\210\326\324!\313\315\"\262\313\315\"\262\232\203k\313\315\"\313\323\"G\\\313\314\"\313\322\"GZ|\266\202\223\212\327\307x\210`\313\314\"\313\330\"G\\\262U)\203\223\211\313\314\"\313\330\"G\\\262`|\210\210\202\376\211\313\315\"\313\323\"G\\\262b\210\326 \313\315\"\262\313\315\"\262\232\203\325\313\315\"\313\323\"G\\\313\314\"\313\322\"GZ|\266\202\375\212\327\307w\210`\313\315\"\313\316\"GZ\262U)\203\375`\313\315\"\313\316\"GZ\262|\210\210)\2028\312V\2038 \2038\307\212\331 \204\332\324!\210\333\334 !\203(\335\312!\336 \"\266\202)\211\2037\331 \210\337 \210\211Ac\210\210\211\207" [case-fold-search sp-comment-char major-mode sp-navigate-reindent-after-up sp-navigate-reindent-after-up-in-string sp-navigate-close-if-unbalanced 1 nil sp-get-enclosing-sexp abs 0 plist-get :end :beg :prefix always interactive sp-point-in-string :cl :op t char-to-string sp-get-thing "     \n" :suffix sp-backward-sexp sp-skip-backward-to-symbol sp--looking-back sp--get-opening-regexp match-string assoc sp-forward-sexp sp-pair-list] 10 (#$ . 227509) "^p\np"])
(put 'sp-up-sexp 'CUA 'move)
#@635 Move backward out of one level of parentheses.
 
With ARG, do this that many times.  A negative argument means
move forward but still to a less deep spot.
 
The argument INTERACTIVE is for internal use only.
 
If called interactively and `sp-navigate-reindent-after-up' is
enabled for current major-mode, remove the whitespace between
beginning of the expression and the first "thing" inside the
expression.
 
Examples:
 
  (foo (bar baz) quux| blab) -> |(foo (bar baz) quux blab)
 
  (foo (bar |baz) quux blab) -> |(foo (bar baz) quux blab) ;; 2
 
  (                  -> |(foo bar baz)
​    foo |bar baz)
 
(fn &optional ARG INTERACTIVE)
(defalias 'sp-backward-up-sexp #[512 "\206\300\262\301[\"\207" [1 sp-up-sexp] 5 (#$ . 230916) "^p\np"])
(put 'sp-backward-up-sexp 'CUA 'move)
#@142 Save the whitespace cleaned after the last kill.
 
If the next command is `sp-kill-sexp', append the whitespace
between the successive kills.
(defvar sp-last-kill-whitespace nil (#$ . 231705))
#@267 Kill or copy region between BEG and END according to DONT-KILL.
If `evil-mode' is active, copying a region will also add it to the 0 register.
Additionally, if command was prefixed with a register, copy the region
to that register.
 
(fn BEG END &optional DONT-KILL)
(defalias 'sp--kill-or-copy-region #[770 "\211\203 \302\"\202\303\"\304\300!\2031\2031\203$\305\306\307\310!\"\210    \2031\305    \307\310!\"\210\311\211\207" [evil-mode evil-this-register copy-region-as-kill kill-region boundp evil-set-register 48 evil-get-register 49 nil] 8 (#$ . 231904) nil])
#@1959 Kill the balanced expression following point.
 
If point is inside an expression and there is no following
expression, kill the topmost enclosing expression.
 
With ARG being positive number N, repeat that many times.
 
With ARG being Negative number -N, repeat that many times in
backward direction.
 
With ARG being raw prefix \[universal-argument], kill all the expressions from
point up until the end of current list.  With raw prefix \[negative-argument] \[universal-argument],
kill all the expressions from beginning of current list up until
point.  If point is inside a symbol, this is also killed.  If
there is no expression after/before the point, just delete the
whitespace up until the closing/opening delimiter.
 
With ARG being raw prefix \[universal-argument] \[universal-argument], kill current list (the list
point is inside).
 
With ARG numeric prefix 0 (zero) kill the insides of the current
list, that is everything from after the opening delimiter to
before the closing delimiter.
 
If ARG is nil, default to 1 (kill single expression forward)
 
If second optional argument DONT-KILL is non-nil, save the to be
killed region in the kill ring, but do not kill the region from
buffer.
 
With `sp-navigate-consider-symbols', symbols and strings are also
considered balanced expressions.
 
Examples:
 
 (foo |(abc) bar)  -> (foo | bar) ;; nil, defaults to 1
 
 (foo (bar) | baz) -> |           ;; 2
 
 (foo |(bar) baz)  -> |           ;; \[universal-argument] \[universal-argument]
 
 (1 |2 3 4 5 6)    -> (1|)        ;; \[universal-argument]
 
 (1 |2 3 4 5 6)    -> (1 | 5 6)   ;; 3
 
 (1 2 3 4 5| 6)    -> (1 2 3 | 6) ;; -2
 
 (1 2 3 4| 5 6)    -> (|5 6)      ;; - \[universal-argument]
 
 (1 2 |   )        -> (1 2|)      ;; \[universal-argument], kill useless whitespace
 
 (1 2 3 |4 5 6)    -> (|)         ;; 0
 
Note: prefix argument is shown after the example in
"comment". Assumes `sp-navigate-consider-symbols' equal to t.
 
(fn &optional ARG DONT-KILL)
(defalias 'sp-kill-sexp #[512 "\304!\305!\306!\307d`\203\245\310U\203\245\311\312W!\313 \314\315\"\262\314\315\"\262\232\203H?\205\240\316 \211\314\315\"\314\317\"|\262\262\202\240\312V\203q\320\314\315\"\314\321\"GZ\262\314\317\"\314\322\"GZ\262 #\210\202\212\320\314\317\"\262\314\315\"\314\323\"G\\\262 #\210?\205\240\316 \211\314\315\"\314\317\"|\262\262\266\202\202\246\203\313\324U\203\313\325 \211\320\314\315\"\314\321\"GZ\314\317\" #\262\262\202\246\312U\203\367\313 \211\205\362\211\320\314\315\"\314\323\"G\\\314\317\"\314\322\"GZ #\262\262\202\246\212\312V\203=\203=\326\327!!\262\314\315\"\314\321\"GZW\203&\314\315\"\314\321\"GZ\262\314\317\"V\2035\314\317\"\262\210S\262\202\370)\205\246\330 \331\223\332=\203l    \333\235\203X\334\n\331\"\210\320`V\203c`\202d\n#\210\202s\320\n#\210?\205\244\335 \210\336\337`\"\331\307\340#)\266\203\203\232\n\337`\"P\211`|\210    \312U\205\244\334\n\331\"\262\207" [last-command sp-successive-kill-preserve-whitespace sp-last-kill-whitespace inhibit-changing-match-data sp--raw-argument-p prefix-numeric-value abs t 4 sp-get-thing 0 sp-get-enclosing-sexp plist-get :beg sp-get-whitespace :end sp--kill-or-copy-region :prefix :cl :op 16 sp-backward-up-sexp sp-forward-sexp sp--signum make-marker nil kill-region (1 2) kill-append sp--cleanup-after-kill "\n" buffer-substring-no-properties string-match] 17 (#$ . 232484) "P"])
(defalias 'sp--cleanup-after-kill #[0 "\306 \307\310\311\312\313!\314\"\315$\216\316\317\320 S\")\262\204i\212\321\322\323\"\2030\324\325x\210\321\326 !\2040\325u\210`)\212\327\322!\203M\324\325w\210\330\331 !\204M\327\332!\204M\333u\210`)\334=\203d    \335U\204b\336\"\202c\337|\266 \f>\203r\340 \207 >\206}%&>?\205\230\212\341\320 \342 \"\210)\212\343 \210\344 )iV\205\230\343 \207" [this-command sp-successive-kill-preserve-whitespace sp-last-kill-whitespace major-mode sp-lisp-modes sp-no-reindent-after-kill-modes match-data make-byte-code 0 "\301\300\302\"\207" vconcat vector [set-match-data evaporate] 3 looking-back "^[     ]+" line-beginning-position sp--looking-back-p " " 1 "     " nil sp--get-opening-regexp looking-at sp--looking-at sp--get-closing-regexp "$" -1 kill-region 2 buffer-substring-no-properties "" indent-according-to-mode sp--indent-region line-end-position back-to-indentation current-indentation indent-line-function sp-no-reindent-after-kill-indent-line-functions] 7])
#@424 Kill the balanced expression preceding point.
 
This is exactly like calling `sp-kill-sexp' with minus ARG.
In other words, the direction of all commands is reversed.  For
more information, see the documentation of `sp-kill-sexp'.
 
Examples:
 
  (foo (abc)| bar)           -> (foo | bar)
 
  blab (foo (bar baz) quux)| -> blab |
 
  (1 2 3 |4 5 6)             -> (|4 5 6) ;; \[universal-argument]
 
(fn &optional ARG DONT-KILL)
(defalias 'sp-backward-kill-sexp #[512 "\300\301!\"\207" [sp-kill-sexp sp--negate-argument] 5 (#$ . 236961) "P"])
#@196 Copy the following ARG expressions to the kill-ring.
 
This is exactly like calling `sp-kill-sexp' with second argument
t.  All the special prefix arguments work the same way.
 
(fn &optional ARG)
(defalias 'sp-copy-sexp #[256 "\212\300\301\")\207" [sp-kill-sexp t] 4 (#$ . 237507) "P"])
#@204 Copy the previous ARG expressions to the kill-ring.
 
This is exactly like calling `sp-backward-kill-sexp' with second argument
t.  All the special prefix arguments work the same way.
 
(fn &optional ARG)
(defalias 'sp-backward-copy-sexp #[256 "\212\300\301!\302\")\207" [sp-kill-sexp sp--negate-argument t] 4 (#$ . 237801) "P"])
#@229 Clone sexp after or around point.
 
If the form immediately after point is a sexp, clone it below the
current one and put the point in front of it.
 
Otherwise get the enclosing sexp and clone it below the current
enclosing sexp.
(defalias 'sp-clone-sexp #[0 "\300 \211\301\302\"\262\303\232\204\211\202\304 \262\211\205\206\211\305 \210\301\306\"\301\307\"GZ`W\203Y\212\301\306\"\301\307\"GZb\210\310p\301\306\"\301\307\"GZ\301\311\"\301\312\"G\\#\210\313 \210)\202\202\301\311\"\301\312\"G\\b\210\212\310p\301\306\"\301\307\"GZ\301\311\"\301\312\"G\\#\210)\313 \210\314 \262\207" [sp-get-thing plist-get :op "" sp-get-enclosing-sexp undo-boundary :beg :prefix insert-buffer-substring-no-properties :end :suffix newline-and-indent sp-indent-defun] 9 (#$ . 238137) nil])
#@887 Kill a line as if with `kill-line', but respecting delimiters.
 
With ARG being raw prefix \[universal-argument] \[universal-argument], kill the hybrid sexp
the point is in (see `sp-get-hybrid-sexp').
 
With ARG numeric prefix 0 (zero) just call `kill-line'.
 
You can customize the behaviour of this command by toggling
`sp-hybrid-kill-excessive-whitespace'.
 
Examples:
 
  foo | bar baz               -> foo |               ;; nil
 
  foo (bar | baz) quux        -> foo (bar |) quux    ;; nil
 
  foo | bar (baz              -> foo |               ;; nil
             quux)
 
  foo "bar |baz quux" quack   -> foo "bar |" quack   ;; nil
 
  foo (bar
       baz) qu|ux (quack      ->   foo | hoo         ;; \[universal-argument] \[universal-argument]
                   zaq) hoo
 
  foo | (bar                  -> foo |               ;; C-0
         baz)                          baz)
 
(fn ARG)
(defalias 'sp-kill-hybrid-sexp #[257 "\303!\304!\212\305 \210i)i\306U\203\307 \202\322\203B\310U\203B\311 \211\312\313\314\"\313\315\"GZ\313\316\"\313\317\"G\\\"\262\262\202\322\311 \212\320=\204V\321!\203^ \204^\322 \203^\323 \210\211d\324\325!\203t\313\316\"\313\317\"G\\T\202~\313\316\"\313\317\"G\\^    \203\234\212\211b\210\326\327w\210    \330\267\202\227`\262\202\233\211`|\210)\312`\"\266)\210\331 \210\332 \205\322\333 \334 |\210\211\306U\203\302\n\203\302\335\336!\202\322iZ\211\306V\205\320\337\340\"c\262\207" [sp-hybrid-kill-entire-symbol sp-hybrid-kill-excessive-whitespace kill-whole-line sp--raw-argument-p prefix-numeric-value back-to-indentation 0 kill-line 16 sp-get-hybrid-sexp kill-region plist-get :beg :prefix :end :suffix t functionp sp-point-in-symbol sp-backward-sexp looking-at "[     ]*$" "\n      " nil #s(hash-table size 1 test eq rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (kill 145)) sp--cleanup-after-kill sp-point-in-blank-line line-beginning-position line-end-position delete-char 1 make-string 32] 13 (#$ . 238938) "P"])
#@472 Kill current line in sexp-aware manner.
 
First, go to the beginning of current line and then try to kill
as much as possible on the current line but without breaking
balance.
 
If there is a hanging sexp at the end of line the it is killed as
well.
 
If there is a closing delimiter for a sexp "up" current sexp,
the kill is not extended after it.  For more details see
`sp-kill-hybrid-sexp'.
 
Examples:
 
  (progn                    (progn
    (some |long sexp))  ->    |)
(defalias 'sp-kill-whole-line #[0 "\300 \210\301\302!\210\212\300 \210m)\303 \205\211?\205\304 \207" [beginning-of-line sp-kill-hybrid-sexp nil sp-point-in-blank-line kill-whole-line] 2 (#$ . 240933) nil])
#@100 Transpose FIRST and SECOND object while preserving the
whitespace between them.
 
(fn FIRST SECOND)
(defalias 'sp--transpose-objects #[514 "\212\211\300\301\"\300\302\"GZ\262b\210\211\303\300\301\"\300\302\"GZ\300\304\"\"\262\303\300\304\"\262`\"\300\301\"\300\302\"GZ\262b\210\261\266\202)\207" [plist-get :beg :prefix delete-and-extract-region :end] 9 (#$ . 241621)])
#@746 Transpose the expressions around point.
 
The operation will move the point after the transposed block, so
the next transpose will "drag" it forward.
 
With arg positive N, apply that many times, dragging the
expression forward.
 
With arg negative -N, apply N times backward, pushing the word
before cursor backward.  This will therefore not transpose the
expressions before and after point, but push the expression
before point over the one before it.
 
Examples:
 
  foo |bar baz     -> bar foo| baz
 
  foo |bar baz     -> bar baz foo| ;; 2
 
  (foo) |(bar baz) -> (bar baz) (foo)|
 
  (foo bar)        ->    (baz quux)   ;; keeps the formatting
​    |(baz quux)            |(foo bar)
 
  foo bar baz|     -> foo baz| bar ;; -1
 
(fn &optional ARG)
(defalias 'sp-transpose-sexp #[256 "\300!\301!\302V\203\303 \203\304 \210\211\302V\205u\302W\203#\305 \210\212\306 )\212\211\307\310\"\307\311\"GZ\262b\210\305 )\312\"\210\302W\203n\211\307\310\"\307\311\"GZ\262\313\307\314\"\307\310\"\307\311\"G[\307\315\"G[$\262\\b\210S\266\203\202\207" [prefix-numeric-value abs 0 sp-point-in-symbol sp-forward-symbol sp-backward-sexp sp-forward-sexp plist-get :beg :prefix sp--transpose-objects - :end :suffix] 14 (#$ . 242014) "P"])
#@539 Transpose the hybrid sexps around point.
 
`sp-backward-sexp' is used to enter the previous hybrid sexp.
 
With ARG numeric prefix call `transpose-lines' with this
argument.
 
The operation will move the point at the next line after the
transposed block if it is at the end of line already.
 
Examples:
 
  foo bar            baz (quux
  |baz (quux   ->         quack)
        quack)       foo bar\n|
 
 
  [(foo) (bar) -> [(baz)
  |(baz)]          (foo) (bar)|]
 
  foo bar baz  -> quux flux
  |quux flux      foo bar baz\n|
 
(fn &optional ARG)
(defalias 'sp-transpose-hybrid-sexp #[256 "\211\247\203    \300!\207\212\301 \210\302 \210\303 )\212\211\304\305\"\262b\210\302 \210\303 )\211\304\306\"\262\304\306\"\262V\203<\307\310!\210\202A\311\"\210\312\313!\205L\314y\210\315 \207" [transpose-lines sp-forward-sexp sp-backward-sexp sp-get-hybrid-sexp plist-get :beg :end sp-message :invalid-context-prev sp--transpose-objects looking-at "[\n     ]+" nil back-to-indentation] 8 (#$ . 243267) "P"])
#@367 Push the hybrid sexp after point over the following one.
 
`sp-forward-sexp' is used to enter the following hybrid sexp.
 
Examples:
 
  |x = big_function_call(a,    |(a,
                         b)      b) = read_user_input()
                           ->
  (a,                          x = big_function_call(a,
   b) = read_user_input()                            b)
(defalias 'sp-push-hybrid-sexp #[0 "\300 \212\211\301\302\"\262b\210\303 \210\300 )\301\304\"\262\301\304\"\262V\203*\305\306!\202.\307\"\207" [sp-get-hybrid-sexp plist-get :end sp-forward-sexp :beg sp-message :invalid-context-cur sp--transpose-objects] 7 (#$ . 244273) nil])
#@338 Add the hybrid sexp at line into previous sexp.  All forms
between the two are also inserted.  Specifically, if the point is
on empty line, move the closing delimiter there, so the next
typed text will become the last item of the previous sexp.
 
This acts similarly to `sp-add-to-previous-sexp' but with special
handling of empty lines.
(defalias 'sp-indent-adjust-sexp #[0 "\300 \212\211\301\302\"\262b\210\303\304!)\211\203*\203*\211\301\305\"\262\301\302\"\262W\2040\306\307!\202s\212\211\301\305\"\262b\210\301\310\"c\210\301\305\"\301\310\"GZb\210\311\301\310\"G!\266)\312 \313\301\302\"\301\305\"\"\266\314 \210\315\301\316\"\262\317\320#\207" [sp-get-hybrid-sexp plist-get :beg sp-get-sexp t :end sp-message :no-structure-found :cl delete-char sp-get-enclosing-sexp sp--indent-region indent-according-to-mode sp--run-hook-with-args :op :post-handlers indent-adjust-sexp] 8 (#$ . 244934) nil])
#@398 Remove the hybrid sexp at line from previous sexp.  All
sibling forms after it are also removed (not deleted, just placed
outside of the enclosing list).  Specifically, if the point is on
empty line followed by closing delimiter of enclosing list, move
the closing delimiter after the last item in the list.
 
This acts similarly to `sp-forward-barf-sexp' but with special
handling of empty lines.
(defalias 'sp-dedent-adjust-sexp #[0 "\300 \211\205\222\212\301\302!\210`\303\304\"\303\305\"GZ\262U\203I\306\302!\307\303\305\"G!\210\303\304\"\262b\210\214\310 \210\311\312!\210\311\313!\210)\303\305\"c\266\202\203\314\302!\210\315\316!\210\214\317 \303\304\"b\210\307\303\305\"G[!\210\310 \210\311\312!\210\311\313!\210\303\305\"c\266)\211\320\303\321\"\303\304\"\"\266)\322 \210\323\303\324\"\262\325\326#\207" [sp-get-enclosing-sexp sp-skip-forward-to-symbol t plist-get :end :cl sp-get-thing delete-char sp--narrow-to-line skip-syntax-forward " " "." sp-skip-backward-to-symbol sp-forward-barf-sexp (4) sp-backward-down-sexp sp--indent-region :beg indent-according-to-mode sp--run-hook-with-args :op :post-handlers dedent-adjust-sexp] 7 (#$ . 245867) nil])
#@368 Add hybrid sexp following the current list in it by moving the
closing delimiter.
 
This is philosophically similar to `sp-forward-slurp-sexp' but
works better in "line-based" languages like C or Java.
 
Because the structure is much looser in these languages, this
command currently does not support all the prefix argument
triggers that `sp-forward-slurp-sexp' does.
(defalias 'sp-slurp-hybrid-sexp #[0 "\300\301 \211\203%\212\211\302\303\"b\266\304 \302\305\"\262\302\305\"\262V\205%\306 )\211\203\212\302\303\"\302\307\"G\\b\210\310\302\311\"G\302\307\"G\\[!\210\312 \203S\313 \314 T|\210\304 \210\315\302\305\"!\315\302\303\"!=\203i\316\262\204|\306 \302\303\"\302\307\"G\\b\266\302\311\"\302\307\"\261\266\317\320!\212\212\302\305\"\302\321\"G\\b\210\322\323!)\203\262\302\303\"\302\311\"GZb\210\324 \210\202\350\302\303\"\302\311\"GZb\210\325\302\305\"\302\321\"G\\\302\305\"\302\321\"G\\\212\302\305\"\302\321\"G\\b\210\326\327!)\\\"c\210)\322\323!\204\322\330 !\204\322\331 !\204\204\324 \210\210\317\320!\332\302\305\"\302\303\"\"\266\317\320!)\202 \333\334!\210\300\262\202*\333\334!\210\300\262\207" [nil sp-get-enclosing-sexp plist-get :end sp-forward-sexp :beg sp-get-hybrid-sexp :suffix delete-char :cl sp-point-in-blank-line line-beginning-position line-end-position line-number-at-pos t sp--next-thing-selection -1 :op looking-at "[     ]*$" newline buffer-substring-no-properties skip-syntax-forward " " sp--get-stringlike-regexp sp--get-closing-regexp sp--indent-region sp-message :invalid-structure] 11 (#$ . 247058) nil])
#@924 Add sexp following the current list in it by moving the closing delimiter.
 
If the current list is the last in a parent list, extend that
list (and possibly apply recursively until we can extend a list
or end of file).
 
If ARG is N, apply this function that many times.
 
If ARG is negative -N, extend the opening pair instead (that is,
backward).
 
If ARG is raw prefix \[universal-argument], extend all the way to the end of the parent list.
 
If both the current expression and the expression to be slurped
are strings, they are joined together.
 
See also `sp-slurp-hybrid-sexp' which is similar but handles
C-style syntax better.
 
Examples:
 
  (foo |bar) baz        -> (foo |bar baz)
 
  [(foo |bar)] baz      -> [(foo |bar) baz]
 
  [(foo |bar) baz]      -> [(foo |bar baz)]
 
  ((|foo) bar baz quux) -> ((|foo bar baz quux)) ;; with \[universal-argument]
 
  "foo| bar" "baz quux" -> "foo| bar baz quux"
 
(fn &optional ARG)
(defalias 'sp-forward-slurp-sexp #[256 "\300!\301V\203\204\302\300!!\303 \304 \305\211\205\203\212\306!\203\272\307\310\"\307\311\"G\\\262b\210\303 \262\205\202\307\310\"\307\312\"GZ\262b\210\313\307\314\"\262\315\316\317\n\320\n\321\n\257$\210\307\312\"\307\311\"\261\266\307\310\"\307\311\"G\\\262b\210\322\307\312\"G\307\311\"G\\[\262!\210\323\307\324\"\307\325\"GZ\262\307\310\"\262\"\210\313\307\314\"\262\326\316\317\n\320\n\321\n\257$\202\202\301V\205\202\307\310\"\307\311\"G\\\262b\210\262\327\305!\262\307\324\"\262\307\324\"\262W\203\307\310\"\307\311\"G\\\262b\210\262\327\305!\262\202\327\203\"\212\307\324\"b\210\304 ?\262)\203\"\330\331!\210\332\262\202\272\211\203x\307\312\"\262\333\232\203_\211\307\312\"\262\333\232\203_\334\"\210\307\310\"\262\335Zb\210\336\310\307\310\"\262\335Z#\210\202q\212\211\307\310\"\307\312\"GZ\262b\210\327\337!)\322\307\312\"G\307\311\"G\\[\262!\210\307\310\"\307\311\"G\\\262\307\312\"G\307\311\"G\\\262Zb\210\340\307\310\"\307\324\"\307\314\"G\307\312\"G$\301U?\262\203\211\307\324\"\262\327\337!\307\324\"\262\232\203\307\310\"\307\311\"G\\\262\307\324\"\307\325\"GZ\262U\203\212\307\310\"\307\312\"GZ\262b\210\341c\210)\210\313\307\314\"\262\315\316\317\n\320\n\342    \321\f\257$\210\211\307\312\"\307\311\"\261\266\323\307\324\"\307\325\"GZ\262`\"\210\307\324\"\262\307\324\"\262U\203W\336\310`#\210\313\307\314\"\262\326\316\317\n\320\n\342    \321\f\257$\210S\262\202\272\330\343!\210\332\262\202\272)\207\344\345!!\207" [prefix-numeric-value 0 abs sp-get-enclosing-sexp sp-point-in-comment nil sp--raw-argument-p plist-get :end :suffix :cl sp--run-hook-with-args :op :pre-handlers slurp-forward :arg :enc :next-thing delete-char sp--indent-region :beg :prefix :post-handlers sp-get-thing sp-message :cant-slurp-context -1 "\"" sp--join-sexp 2 plist-put t - " " :ok :cant-slurp sp-backward-slurp-sexp sp--negate-argument] 18 (#$ . 248663) "P"])
#@855 Add the sexp preceding the current list in it by moving the opening delimiter.
 
If the current list is the first in a parent list, extend that
list (and possibly apply recursively until we can extend a list
or beginning of file).
 
If arg is N, apply this function that many times.
 
If arg is negative -N, extend the closing pair instead (that is,
forward).
 
If ARG is raw prefix \[universal-argument], extend all the way to the beginning of the parent list.
 
If both the current expression and the expression to be slurped
are strings, they are joined together.
 
Examples:
 
  foo (bar| baz)        -> (foo bar| baz)
 
  foo [(bar| baz)]      -> [foo (bar| baz)]
 
  [foo (bar| baz)]      -> [(foo bar| baz)]
 
  (foo bar baz (|quux)) -> ((foo bar baz |quux)) ;; with \[universal-argument]
 
  "foo bar" "baz |quux" -> "foo bar baz |quux"
 
(fn &optional ARG)
(defalias 'sp-backward-slurp-sexp #[256 "\300!\301V\203\202\302\300!!\303 \304 \305\211\205\201\212\306!\203\252\307\310\"\307\311\"GZ\262b\210\303 \262\205\200\312\307\313\"G\307\311\"G\\\262!\210\307\310\"\307\313\"G\\\262b\210\314\307\313\"\262\315\316\317\n\320\n\321\n\257$\210\307\311\"\307\313\"\261\266\322\307\310\"\307\313\"G\\\262\307\323\"\262\"\210\314\307\313\"\262\324\316\317\n\320\n\321\n\257$\202\200\301V\205\200\307\310\"\307\311\"GZ\262b\210\262\325\326!\262\307\323\"\262\307\323\"\262V\203\363\307\310\"\307\311\"GZ\262b\210\262\325\326!\262\202\307\203\212\307\310\"b\210\304 ?\262)\203\327\330!\210\331\262\202\252\211\203v\307\332\"\262\333\232\203Q\211\307\332\"\262\333\232\203Q\334\"\210\307\310\"\307\311\"GZ\262b\210\335\310\307\310\"\262#\210\202o\212\211\307\310\"\307\313\"G\\\262b\210\325 )\312\307\313\"G\307\311\"G\\\262!\210\307\310\"\307\311\"GZ\262b\210\336\307\323\"\307\310\"\307\313\"G\307\332\"G$\301U?\262\203\336\307\323\"\262\307\313\"G\307\311\"G#\262\325 \307\323\"\262U\203\307\310\"\307\311\"GZ\262\307\323\"\307\337\"G\\\262U\203\212\336\307\310\"\307\313\"G\\\307\313\"G\307\311\"G#\262b\210\340c\210)\210\314\307\313\"\262\315\316\317\n\320\n\341    \321\f\257$\210\211\307\311\"\307\313\"\261\266\322`\307\323\"\262\"\210\307\310\"\262\307\310\"\262\232\203U\335\310`\307\313\"G\262Z#\210\314\307\313\"\262\324\316\317\n\320\n\341    \321\f\257$\210S\262\202\252\327\342!\210\331\262\202\252)\207\343\344!!\207" [prefix-numeric-value 0 abs sp-get-enclosing-sexp sp-point-in-comment nil sp--raw-argument-p plist-get :beg :prefix delete-char :op sp--run-hook-with-args :pre-handlers slurp-backward :arg :enc :next-thing sp--indent-region :end :post-handlers sp-get-thing t sp-message :cant-slurp-context -1 :cl "\"" sp--join-sexp plist-put - :suffix " " :ok :cant-slurp sp-forward-slurp-sexp sp--negate-argument] 18 (#$ . 251674) "P"])
#@714 Add the expression around point to the first list preceding point.
 
With ARG positive N add that many expressions to the preceding
list.
 
If ARG is raw prefix argument \[universal-argument] add all expressions until
the end of enclosing list to the previous list.
 
If ARG is raw prefix argument \[universal-argument] \[universal-argument] add the current
list into the previous list.
 
Examples:
 
  (foo bar) |baz quux        -> (foo bar |baz) quux
 
  (foo bar) |baz quux        -> (foo bar |baz quux) ;; 2
 
  (blab (foo bar) |baz quux) -> (blab (foo bar |baz quux)) ;; \[universal-argument]
 
  (foo bar) (baz |quux)      -> (foo bar (baz |quux)) ;; \[universal-argument] \[universal-argument]
 
(fn &optional ARG)
(defalias 'sp-add-to-previous-sexp #[256 "\212\211\300\267\202\301 \210\302 \210\303 \210\202\302 \210\303!\210)\304 \207" [#s(hash-table size 1 test equal rehash-size 1.5 rehash-threshold 0.8125 purecopy t data ((16) 7)) sp-backward-up-sexp sp-backward-down-sexp sp-forward-slurp-sexp indent-according-to-mode] 3 (#$ . 254607) "P"])
#@723 Add the expressions around point to the first list following point.
 
With ARG positive N add that many expressions to the following
list.
 
If ARG is raw prefix argument \[universal-argument] add all expressions until
the beginning of enclosing list to the following list.
 
If ARG is raw prefix argument \[universal-argument] \[universal-argument] add the current
list into the following list.
 
Examples:
 
  foo bar| (baz quux)        -> foo (bar| baz quux)
 
  foo bar| (baz quux)        -> (foo bar| baz quux) ;; 2
 
  (foo bar |(bar quux) blab) -> ((foo bar |bar quux) blab) ;; \[universal-argument]
 
  (foo |bar) (baz quux)      -> ((foo |bar) baz quux) ;; \[universal-argument] \[universal-argument]
 
(fn &optional ARG)
(defalias 'sp-add-to-next-sexp #[256 "\212\211\300\267\202\301 \210\302 \210\303 \202\302 \210\303!)\207" [#s(hash-table size 1 test equal rehash-size 1.5 rehash-threshold 0.8125 purecopy t data ((16) 7)) sp-up-sexp sp-down-sexp sp-backward-slurp-sexp] 3 (#$ . 255666) "P"])
#@718 Remove the last sexp in the current list by moving the closing delimiter.
 
If ARG is positive number N, barf that many expressions.
 
If ARG is negative number -N, contract the opening pair instead.
 
If ARG is raw prefix \[universal-argument], barf all expressions from the one after
point to the end of current list and place the point before the
closing delimiter of the list.
 
If the current list is empty, do nothing.
 
Examples: (prefix arg in comment)
 
  (foo bar| baz)   -> (foo bar|) baz   ;; nil (defaults to 1)
 
  (foo| [bar baz]) -> (foo|) [bar baz] ;; 1
 
  (1 2 3| 4 5 6)   -> (1 2 3|) 4 5 6   ;; \[universal-argument] (or numeric prefix 3)
 
  (foo bar| baz)   -> foo (bar| baz)   ;; -1
 
(fn &optional ARG)
(defalias 'sp-forward-barf-sexp #[256 "\300!\301!\211\302V\203+\303 \203\304\305!\2020\212\306 \211\2039\307U\2039\310\311!\312\313\"\312\314\"G\\b\266\202^\312\313\"\312\315\"GZb\210\316!\210`\312\317\"X\203^\312\317\"\312\320\"G\\b\210\310\311!\211\312\317\"\262\312\317\"\262\232\203\202\312\317\"\312\320\"G\\b\210\202\221\211\312\313\"\312\314\"G\\\262b\210\210\321\312\320\"\322\323\324\325F$\266\306 `\211\312\313\"\312\315\"GZV\203\340\211b\210\312\315\"\312\314\"\261\210\312\313\"\312\315\"GZb\210\326\312\315\"G\312\314\"G\\!\210\202\312\313\"\312\315\"GZb\210\326\312\315\"G\312\314\"G\\!\210\211b\210\312\315\"\312\314\"\261\210\210\327\312\317\"\312\313\"\"\210\321\312\320\"\330\323\324\325F$\262\262)\2020\331\332!!\207" [sp--raw-argument-p prefix-numeric-value 0 sp-point-in-blank-sexp sp-message :blank-sexp sp-get-enclosing-sexp 4 sp-get-thing t plist-get :end :suffix :cl sp-backward-sexp :beg :op sp--run-hook-with-args :pre-handlers barf-forward :arg :enc delete-char sp--indent-region :post-handlers sp-backward-barf-sexp sp--negate-argument] 14 (#$ . 256675) "P"])
#@405 This is exactly like calling `sp-forward-barf-sexp' with minus ARG.
In other words, instead of contracting the closing pair, the
opening pair is contracted.  For more information, see the
documentation of `sp-forward-barf-sexp'.
 
Examples:
 
  (foo bar| baz) -> foo (bar| baz)
 
  ([foo bar] |baz) -> [foo bar] (|baz)
 
  (1 2 3 |4 5 6) -> 1 2 3 (|4 5 6) ;; \[universal-argument] (or 3)
 
(fn &optional ARG)
(defalias 'sp-backward-barf-sexp #[256 "\300!\301!\211\302V\203)\303 \203\304\305!\202.\212\306 \211\2038\307U\2038\310 \311\312\"\311\313\"GZb\266\202]\311\312\"\311\314\"G\\b\210\315!\210`\311\316\"Y\203]\311\316\"\311\317\"GZb\210\310 \211\311\312\"\262\311\312\"\262\232\203\200\311\316\"\311\317\"GZb\210\202\217\211\311\312\"\311\313\"GZ\262b\210\210\320\311\314\"\321\322\323\324F$\266\306 `\211\311\312\"\311\313\"GZW\203\336\311\312\"\311\313\"GZb\210\325\311\314\"G\311\313\"G\\!\210\211b\210\311\313\"\311\314\"\261\210\202\211b\210\311\313\"\311\314\"\261\210\311\312\"\311\313\"GZb\210\325\311\314\"G\311\313\"G\\!\210\210\326\311\312\"\311\316\"\"\210\320\311\314\"\327\322\323\324F$\262\262)\202.\330\331!!\207" [sp--raw-argument-p prefix-numeric-value 0 sp-point-in-blank-sexp sp-message :blank-sexp sp-get-enclosing-sexp 4 sp-get-thing plist-get :beg :prefix :op sp-forward-sexp :end :cl sp--run-hook-with-args :pre-handlers barf-backward :arg :enc delete-char sp--indent-region :post-handlers sp-forward-barf-sexp sp--negate-argument] 14 (#$ . 258558) "P"])
#@85 Generate `sp-skip-forward-to-symbol' or `sp-skip-backward-to-symbol'.
 
(fn FORWARD)
(defalias 'sp--skip-to-symbol-1 '(macro . #[257 "\211\203\300\202    \301\203\301\202\300\203\302\202\303\203#\304\202$\305\203,\306\202-\307\2035\310\2026\311\203?\312\202@\313\203I\314\202J\315\316\317\320\321\322\323\321\324\325\326\327BDF\321\330\331\326\332BDF\321\333\334\322\326\335BDDF\321\336B\337BB\321\340B\341BB\257D\323\342\343\fCD\344BB\345\346\347\350\315\351\203\236\352\202\237\353DDEE\354\321\323\203\257\307\202\260\306\203\271\355\202\272\356D\203\304\307\202\305\306\357BE\360\361\362CE\363BBE\257E\364\365\360\366\367BD\370\n\371BEE\370    \372BEFEE\207" [1+ 1- forward-char backward-char following-char preceding-char sp--looking-at sp--looking-back sp--get-suffix sp--get-prefix (eobp) (bobp) cdr car let ((in-comment (sp-point-in-comment)) (allowed-pairs (sp--get-allowed-regexp)) (allowed-open (sp--get-opening-regexp (sp--get-allowed-pair-list))) (allowed-close (sp--get-closing-regexp (sp--get-allowed-pair-list))) (allowed-strings (sp--get-stringlike-regexp)) (prefix nil)) while and not or stop-after-string (not (sp-point-in-string)) sp-point-in-string ((point)) stop-at-string (not (sp-point-in-string)) ((point)) stop-inside-string (sp-point-in-string) ((point)) (allowed-pairs) ((or in-comment (not (sp-point-in-comment)))) (allowed-strings) ((or in-comment (not (sp-point-in-comment)))) member char-syntax ('(60 62 33 124 32 92 34 39 46)) /= 0 logand (lsh 1 20) syntax-after (point) (1- (point)) (unless in-comment (sp-point-in-comment)) allowed-close allowed-open (allowed-strings) progn setq prefix ((> (length prefix) 0)) if (and (not in-comment) (sp-point-in-comment)) goto-char ((sp-get-comment-bounds)) unless (1) ((max (length prefix) 1))] 25 (#$ . 260114)]))
#@412 Skip whitespace and comments moving forward.
 
If STOP-AT-STRING is non-nil, stop before entering a string (if
not already in a string).
 
If STOP-AFTER-STRING is non-nil, stop after exiting a string.
 
If STOP-INSIDE-STRING is non-nil, stop before exiting a string.
 
Examples:
 
  foo|   bar -> foo   |bar
 
  foo|   [bar baz] -> foo   |[bar baz]
 
(fn &optional STOP-AT-STRING STOP-AFTER-STRING STOP-INSIDE-STRING)
(defalias 'sp-skip-forward-to-symbol #[768 "\300 \301 \302\303 !\304\303 !\305 \306m\206d\203$\307 \204$\307`S!\206d\2035\307 \2045\307`T!\206d\203G\307 \203G\307`T!?\206d\310!\203W\206d\300 ?\206d\310!\205d\206d\300 ??\205\303gz\311\235\204\236\312\313\314\315\"\316`!@\"\317U\203\236\204\207\300 \204\236\320!\204\223\320!\205\303\321 \262\211G\317V\205\303\204\266\300 \203\266\322 Ab\210m\204\314u\210\202m\204\211G\314]u\210\202\207" [sp-point-in-comment sp--get-allowed-regexp sp--get-opening-regexp sp--get-allowed-pair-list sp--get-closing-regexp sp--get-stringlike-regexp nil sp-point-in-string sp--looking-at (60 62 33 124 32 92 34 39 46) logand lsh 1 20 syntax-after 0 sp--looking-back sp--get-suffix sp-get-comment-bounds] 13 (#$ . 261972) "^"])
(put 'sp-skip-forward-to-symbol 'CUA 'move)
#@412 Skip whitespace and comments moving backward.
If STOP-AT-STRING is non-nil, stop before entering a string (if
not already in a string).
 
If STOP-AFTER-STRING is non-nil, stop after exiting a string.
 
If STOP-INSIDE-STRING is non-nil, stop before exiting a string.
 
Examples:
 
  foo   |bar -> foo|   bar
 
  [bar baz]   |foo -> [bar baz]|   foo
 
(fn &optional STOP-AT-STRING STOP-AFTER-STRING STOP-INSIDE-STRING)
(defalias 'sp-skip-backward-to-symbol #[768 "\300 \301 \302\303 !\304\303 !\305 \306o\206d\203$\307 \204$\307`T!\206d\2035\307 \2045\307`S!\206d\203G\307 \203G\307`S!?\206d\310!\203W\206d\300 ?\206d\310!\205d\206d\300 ??\205\311hz\311\235\204\237\312\313\314\315\"\316`S!@\"\317U\203\237\204\210\300 \204\237\320!\204\224\320!\205\311\321 \262\211G\317V\205\311\204\267\300 \203\267\322 @b\210o\204\323u\210\202o\204\211G\314]\206\303\314[u\210\202\207" [sp-point-in-comment sp--get-allowed-regexp sp--get-opening-regexp sp--get-allowed-pair-list sp--get-closing-regexp sp--get-stringlike-regexp nil sp-point-in-string sp--looking-back (60 62 33 124 32 92 34 39 46) logand lsh 1 20 syntax-after 0 sp--looking-at sp--get-prefix sp-get-comment-bounds -1] 13 (#$ . 263240) "^"])
(put 'sp-skip-backward-to-symbol 'CUA 'move)
#@95 Move the point into the next string.
 
With BACK non-nil, move backwards.
 
(fn &optional BACK)
(defalias 'sp-skip-into-string #[256 "\211\203\300 ?\205\301u\210\202\300 ?\205\302u\210\202\207" [sp-point-in-string -1 nil] 2 (#$ . 264527)])
#@665 Move point to the next position that is the end of a symbol.
 
With ARG being positive number N, repeat that many times.
 
With ARG being Negative number -N, repeat that many times in
backward direction.
 
A symbol is any sequence of characters that are in either the
word constituent or symbol constituent syntax class.  Current
symbol only extend to the possible opening or closing delimiter
as defined by `sp-add-pair' even if part of this delimiter
would match "symbol" syntax classes.
 
Examples:
 
  |foo bar baz          -> foo| bar baz
 
  |foo (bar (baz))      -> foo (bar| (baz)) ;; 2
 
  |foo (bar (baz) quux) -> foo (bar (baz) quux|) ;; 4
 
(fn &optional ARG)
(defalias 'sp-forward-symbol #[256 "\211\206\302\262\203\311\303\304!\305V\306 \307!\310!\203\302\305V\205\305m\204\370gz\311>\2046\303u\210\202%\203\227\312!\203\227\313\305!\314\315\"\206\202\314\303    \316\305\203z\203z@\203c\303\262\202n\211A\232\203n\211\262\210\211T\262A\262\202O\266\211\262@\315\"\317\305\224\305\225\320%?\266\202\203\227\305\225b\202\365\203\370\312!\203\370\313\305!\314\315\"\206\343\314\303    \316\305\203\333\203\333@\203\304\303\262\202\317\211A\232\203\317\211\262\210\211T\262A\262\202\260\266\211\262@\315\"\317\305\224\305\225\320%?\266\202\203\370\305\225b\204%m\204\273\203\256\312!\203W\313\305!\314\315\"\206H\314\303    \316\305\203@\203@@\203)\303\262\2024\211A\232\2034\211\262\210\211T\262A\262\202\266\211\262@\315\"\317\305\224\305\225\320%?\266\202\204\273\312!\203\256\313\305!\314\315\"\206\237\314\303    \316\305\203\227\203\227@\203\200\303\262\202\213\211A\232\203\213\211\262\210\211T\262A\262\202l\266\211\262@\315\"\317\305\224\305\225\320%?\266\202\204\273gz\321>\203\273\303u\210\202\370S\262\202\322!\266\205)\207\304!\305V\306 \307!\310!\203~\305V\205\201m\204\264gz\311>\204\362\303u\210\202\341\203S\312!\203S\313\305!\314\315\"\206>\314\303    \316\305\2036\2036@\203\303\262\202*\211A\232\203*\211\262\210\211T\262A\262\202 \266\211\262@\315\"\317\305\224\305\225\320%?\266\202\203S\305\225b\202\261\203\264\312!\203\264\313\305!\314\315\"\206\237\314\303    \316\305\203\227\203\227@\203\200\303\262\202\213\211A\232\203\213\211\262\210\211T\262A\262\202l\266\211\262@\315\"\317\305\224\305\225\320%?\266\202\203\264\305\225b\204\341m\204w\203j\312!\203\313\305!\314\315\"\206\314\303    \316\305\203\374\203\374@\203\345\303\262\202\360\211A\232\203\360\211\262\210\211T\262A\262\202\321\266\211\262@\315\"\317\305\224\305\225\320%?\266\202\204w\312!\203j\313\305!\314\315\"\206[\314\303    \316\305\203S\203S@\203<\303\262\202G\211A\232\203G\211\262\210\211T\262A\262\202(\266\211\262@\315\"\317\305\224\305\225\320%?\266\202\204wgz\321>\203w\303u\210\202\264S\262\202\333\322!\207" [case-fold-search sp-pair-list 1 nil abs 0 sp--get-allowed-pair-list sp--get-opening-regexp sp--get-closing-regexp (119 95) sp--looking-at match-string sp-get-pair :skip-match t sp--skip-match-p :pair-skip (119 95) sp-backward-symbol] 15 (#$ . 264782) "^p"])
(put 'sp-forward-symbol 'CUA 'move)
#@678 Move point to the next position that is the beginning of a symbol.
 
With ARG being positive number N, repeat that many times.
 
With ARG being Negative number -N, repeat that many times in
forward direction.
 
A symbol is any sequence of characters that are in either the word
constituent or symbol constituent syntax class.  Current symbol only
extend to the possible opening or closing delimiter as defined by
`sp-add-pair' even if part of this delimiter would match "symbol"
syntax classes.
 
Examples:
 
  foo bar| baz            -> foo |bar baz
 
  ((foo bar) baz)|        -> ((foo |bar) baz) ;; 2
 
  (quux ((foo) bar) baz)| -> (|quux ((foo) bar) baz) ;; 4
 
(fn &optional ARG)
(defalias 'sp-backward-symbol #[256 "\211\206\302\262\203\326\303\304!\305V\306\307 !\310\307 !\203\317\305V\205\322o\204\360hz\311>\2046\312u\210\202%\313!\203\223\314\305!\315\316\"\206~\315\303    \317\305\203v\203v@\203_\303\262\202j\211A\232\203j\211\262\210\211T\262A\262\202K\266\211\262@\316\"\320\305\224\305\225\321%?\266\202\203\223\305\224b\202\355\313!\203\360\314\305!\315\316\"\206\333\315\303    \317\305\203\323\203\323@\203\274\303\262\202\307\211A\232\203\307\211\262\210\211T\262A\262\202\250\266\211\262@\316\"\320\305\224\305\225\321%?\266\202\203\360\305\224b\204%o\204\257\313!\203K\314\305!\315\316\"\206<\315\303    \317\305\2034\2034@\203\303\262\202(\211A\232\203(\211\262\210\211T\262A\262\202    \266\211\262@\316\"\320\305\224\305\225\321%?\266\202\204\257\313!\203\242\314\305!\315\316\"\206\223\315\303    \317\305\203\213\203\213@\203t\303\262\202\211A\232\203\211\262\210\211T\262A\262\202`\266\211\262@\316\"\320\305\224\305\225\321%?\266\202\204\257hz\322>\203\257\312u\210\202\360m\204\310\323\324\302\325\"\326`!@\"\305U\204\310\302u\210\202\257S\262\202\327!\266\204)\207\304!\305V\306\307 !\310\307 !\203\230\305V\205\233o\204\271hz\311>\204\377\312u\210\202\356\313!\203\\\314\305!\315\316\"\206G\315\303    \317\305\203?\203?@\203(\303\262\2023\211A\232\2033\211\262\210\211T\262A\262\202\266\211\262@\316\"\320\305\224\305\225\321%?\266\202\203\\\305\224b\202\266\313!\203\271\314\305!\315\316\"\206\244\315\303    \317\305\203\234\203\234@\203\205\303\262\202\220\211A\232\203\220\211\262\210\211T\262A\262\202q\266\211\262@\316\"\320\305\224\305\225\321%?\266\202\203\271\305\224b\204\356o\204x\313!\203\314\305!\315\316\"\206\315\303    \317\305\203\375\203\375@\203\346\303\262\202\361\211A\232\203\361\211\262\210\211T\262A\262\202\322\266\211\262@\316\"\320\305\224\305\225\321%?\266\202\204x\313!\203k\314\305!\315\316\"\206\\\315\303    \317\305\203T\203T@\203=\303\262\202H\211A\232\203H\211\262\210\211T\262A\262\202)\266\211\262@\316\"\320\305\224\305\225\321%?\266\202\204xhz\322>\203x\312u\210\202\271m\204\221\323\324\302\325\"\326`!@\"\305U\204\221\302u\210\202xS\262\202\350\327!\207" [case-fold-search sp-pair-list 1 nil abs 0 sp--get-opening-regexp sp--get-allowed-pair-list sp--get-closing-regexp (119 95) -1 sp--looking-back match-string sp-get-pair :skip-match t sp--skip-match-p :pair-skip (119 95) logand lsh 20 syntax-after sp-forward-symbol] 14 (#$ . 268047) "^p"])
(put 'sp-backward-symbol 'CUA 'move)
#@591 Rewrap the enclosing expression with a different pair.
 
PAIR is the new enclosing pair.
 
If optional argument KEEP-OLD is set, keep old delimiter and wrap
with PAIR on the outside of the current expression.
 
When used interactively, the new pair is specified in minibuffer
by typing the *opening* delimiter, same way as with pair
wrapping.
 
When used interactively with raw prefix argument \[universal-argument], KEEP-OLD
is set to non-nil.
 
Examples:
 
  (foo |bar baz) -> [foo |bar baz]   ;; [
 
  (foo |bar baz) -> [(foo |bar baz)] ;; \[universal-argument] [
 
(fn PAIR &optional KEEP-OLD)
(defalias 'sp-rewrap-sexp #[513 "\204\301 \207\302 \211\205v\212\211\303\304\"b\210\204\"\305\303\306\"G[!\210Ac\210\303\307\"b\210@c\210\204<\305\303\310\"G!\210\311\303\307\"\312\303\304\"@GAG\303\310\"G[\303\306\"G[%@A$\210)\313@\314\315\316\303\310\"\262D$\207" [sp-last-wrapped-region sp-unwrap-sexp sp-get-enclosing-sexp plist-get :end delete-char :cl :beg :op sp--get-last-wraped-region + sp--run-hook-with-args :post-handlers rewrap-sexp :parent] 14 (#$ . 271439) (byte-code "\3012\250\302\303!\304\211\305\204\244\306\307\310\"\311\"\262\211\305\232\203(\312=\203(\313\301\304\"\210\211\314\315!!P\262\316\304\311\317\203^\203^@\203J\304\262\202R\320@\"\262\210\211T\262A\262\2026\266\211\262!\204l\321\322\"\210\304\311\317\203\232\203\232@\203\204\304\262\202\216@\232\203\216\211\262\210\211T\262A\262\202p\266\211\262\262\202\n\266\2040D\207" [current-prefix-arg done sp--get-pair-list-context wrap nil "" read-event format "Rewrap with: %s" t return throw format-kbd-macro vector ---truthy\? 0 string-prefix-p user-error "Impossible pair prefix selected: %s"] 13)])
#@297 Swap the enclosing delimiters of this and the parent expression.
 
With N > 0 numeric argument, ascend that many levels before
swapping.
 
Examples:
 
  (foo [|bar] baz)              -> [foo (|bar) baz] ;; 1
 
  (foo {bar [|baz] quux} quack) -> [foo {bar (|baz) quux} quack] ;; 2
 
(fn &optional ARG)
(defalias 'sp-swap-enclosing-sexp #[256 "\300 \300T!\203\231\211\203\231\212\211\301\302\"b\210\303\301\304\"G[!\266\301\304\"c\210\301\302\"b\210\303\301\304\"G[!\266\211\301\304\"c\266\301\305\"\301\306\"GZb\266\211\301\306\"\301\307\"\261\266\303\301\307\"G\301\306\"G\\!\266\211\301\305\"\301\306\"GZb\266\301\306\"\301\307\"\261\266\211\303\301\307\"G\301\306\"G\\!\262)\202\234\310\311!\207" [sp-get-enclosing-sexp plist-get :end delete-char :cl :beg :prefix :op sp-message :point-not-deep-enough] 9 (#$ . 273205) "p"])
#@229 Unwrap expression defined by SEXP.
 
Warning: this function remove possible empty lines and reindents
the unwrapped sexp, so the SEXP structure will no longer
represent a valid object in a buffer!
 
(fn SEXP &optional NO-CLEANUP)
(defalias 'sp--unwrap-sexp #[513 "\305\306\"\305\307\"GZ\305\306\"|\210\305\310\"\305\311\"GZ\305\310\"\305\312\"G\\|\266\211?\205\270\305\310\"\305\311\"GZ\262\313\305\306\"\305\307\"GZ\305\312\"G\305\311\"G#\262\314\211\212b\210\315\316\317!\314\320\321#)\266\203\203u\322\317!\211@A|\266`\262b\210\315\316\317!\314\320\321#)\266\203\203\227\322\317!\211@A|\266`\262)    \n>\206\244 \f>?\205\266i\323 \324\"\210\325\"\266\202\266\204\207" [inhibit-changing-match-data major-mode sp-no-reindent-after-kill-modes indent-line-function sp-no-reindent-after-kill-indent-line-functions plist-get :end :cl :beg :prefix :op - nil "^[\n     ]+\\'" thing-at-point line t string-match bounds-of-thing-at-point sp--current-indentation sp--indent-region sp--back-to-indentation] 13 (#$ . 274072)])
#@234 Change the inside of the next expression.
 
First, kill the inside of the next balanced expression, then move
point just after the opening delimiter.
 
Examples:
 
  (f|oo [bar] baz) -> (foo [|] baz)
 
  {|'foo': 'bar'}  -> {'|': 'bar'}
(defalias 'sp-change-inner #[0 "\300 \211\205+\211\301\302\303\"\302\304\"G\\\302\305\"\302\306\"GZ\"\210\302\303\"\302\304\"G\\b\262\207" [sp-get-sexp kill-region plist-get :beg :op :end :cl] 8 (#$ . 275132) nil])
#@370 Change the inside of the enclosing expression.
 
Whitespace on both sides of the inner items is preserved if it
contains newlines.  Invoking this function on a blank sexp will
wipe out remaining whitespace (see `sp-point-in-blank-sexp').
 
Move the point to the beginning of the original content.
 
Examples:
 
  (f|oo [bar] baz) -> (|)
 
  {'f|oo': 'bar'}  -> {'|': 'bar'}
(defalias 'sp-change-enclosing #[0 "\300 \211\205^\211\301 \2031\302\303\304\"\303\305\"G\\\303\306\"\303\307\"GZ\"\210\303\304\"\303\305\"G\\b\202\\\303\304\"\303\305\"G\\b\210\310\311w\210`\303\306\"\303\307\"GZb\210\310\311x\210`\302\"\210b\266\202\262\207" [sp-get-enclosing-sexp sp-point-in-blank-sexp kill-region plist-get :beg :op :end :cl "    \n " nil] 8 (#$ . 275595) nil])
#@488 Unwrap the following expression.
 
With ARG N, unwrap Nth expression as returned by
`sp-forward-sexp'.  If ARG is negative -N, unwrap Nth expression
backwards as returned by `sp-backward-sexp'.
 
Return the information about the just unwrapped expression.  Note
that this structure does not represent a valid expression in the
buffer.
 
Examples:
 
  |(foo bar baz)     -> |foo bar baz
 
  (foo bar| baz)     -> foo bar| baz
 
  |(foo) (bar) (baz) -> |(foo) bar (baz) ;; 2
 
(fn &optional ARG)
(defalias 'sp-unwrap-sexp #[256 "\211\206\301\262\302\212\303!)\211\203\304!\210\211\262)\207" [sp-navigate-consider-symbols 1 nil sp-forward-sexp sp--unwrap-sexp] 4 (#$ . 276369) "p"])
#@346 Unwrap the previous expression.
 
With ARG N, unwrap Nth expression as returned by
`sp-backward-sexp'.  If ARG is negative -N, unwrap Nth expression
forward as returned by `sp-forward-sexp'.
 
Examples:
 
  (foo bar baz)|     -> foo bar baz|
 
  (foo bar)| (baz)   -> foo bar| (baz)
 
  (foo) (bar) (baz)| -> foo (bar) (baz) ;; 3
 
(fn &optional ARG)
(defalias 'sp-backward-unwrap-sexp #[256 "\300\206\301[!\207" [sp-unwrap-sexp 1] 3 (#$ . 277058) "p"])
#@317 Unwrap the current list.
 
With ARG N, unwrap Nth list as returned by applying `sp-up-sexp'
N times.  This function expect positive arg.
 
Examples:
 
  (foo (bar| baz) quux) -> (foo bar| baz quux)
 
  (foo |(bar baz) quux) -> foo |(bar baz) quux
 
  (foo (bar| baz) quux) -> foo (bar| baz) quux ;; 2
 
(fn &optional ARG)
(defalias 'sp-splice-sexp #[256 "\211\206\300\262\301!\211\2057\211\302\303\"\262\304\232\2034\211\212\302\305\"b\210\301!\211\205,\306!\262)\262\2027\306!\207" [1 sp-get-enclosing-sexp plist-get :prefix ";" :beg sp--unwrap-sexp] 6 (#$ . 277516) "p"])
#@246 Save the text in the region between BEG and END inside EXPR,
then delete EXPR and insert the saved text.
 
If optional argument JUPM-END is equal to the symbol 'end move
the point after the re-inserted text.
 
(fn BEG END EXPR &optional JUMP-END)
(defalias 'sp--splice-sexp-do-killing #[1027 "\300\211\301\"\262\302\303\"\302\304\"GZ\262\302\305\"\262|\210\212c\210\306\302\303\"\302\304\"GZ\262`\"\210`\262)\307=\205A\211b\207" [nil buffer-substring-no-properties plist-get :beg :prefix :end sp--indent-region end] 12 (#$ . 278107)])
#@761 Unwrap the current list and kill all the expressions
between start of this list and the point.
 
With the optional argument ARG, repeat that many times.  This
argument should be positive number.
 
Examples:
 
  (foo (let ((x 5)) |(sqrt n)) bar)  -> (foo |(sqrt n) bar)
 
​  (when ok|                             |(perform-operation-1)
​    (perform-operation-1)            ->  (perform-operation-2)
​    (perform-operation-2))
 
​  (save-excursion                    -> |(awesome-stuff-happens) ;; 2
​    (unless (test)
​      |(awesome-stuff-happens)))
 
Note that to kill only the content and not the enclosing
delimiters you can use \[universal-argument] \[sp-backward-kill-sexp].
See `sp-backward-kill-sexp' for more information.
 
(fn &optional ARG)
(defalias 'sp-splice-sexp-killing-backward #[256 "\211\300V\205\301\302!\210\211S\262\202\207" [0 sp-splice-sexp-killing-around (4)] 3 (#$ . 278667) "p"])
#@455 Unwrap the current list and kill all the expressions between
the point and the end of this list.
 
With the optional argument ARG, repeat that many times.  This
argument should be positive number.
 
Examples:
 
  (a (b c| d e) f) -> (a b c| f)
 
  (+ (x |y z) w)   -> (+ x| w)
 
Note that to kill only the content and not the enclosing
delimiters you can use \[universal-argument] \[sp-kill-sexp].
See `sp-kill-sexp' for more information.
 
(fn &optional ARG)
(defalias 'sp-splice-sexp-killing-forward #[256 "\211\300V\205Q\301\302!\211\203F\303\304!\211\305\306\"\262\305\306\"\262\232\203)\307\310!\210\202B\311\305\312\"\262\305\306\"\305\313\"G\\\262\314$\210\210\202I\315\262\210\211S\262\202\207" [0 sp-get-enclosing-sexp 1 sp-get-thing t plist-get :beg sp-kill-sexp (16) sp--splice-sexp-do-killing :end :op end -1] 10 (#$ . 279594) "p"])
#@1135 Unwrap the current list and kill everything inside except next expression.
 
With ARG save that many next expressions.  With ARG negative -N,
save that many expressions backward.
 
If ARG is raw prefix argument \[universal-argument] this function behaves exactly
the same as `sp-splice-sexp-killing-backward'.
 
If ARG is negative raw prefix argument \[negative-argument] \[universal-argument] this function
behaves exactly the same as `sp-splice-sexp-killing-forward'.
 
Note that the behaviour with the prefix argument seems to be
reversed.  This is because the backward variant is much more
common and hence deserve shorter binding.
 
If ARG is raw prefix argument \[universal-argument] \[universal-argument] raise the expression the point
is inside of.  This is the same as `sp-backward-up-sexp' followed by
`sp-splice-sexp-killing-around'.
 
Examples:
 
  (a b |(c d) e f)      -> |(c d)     ;; with arg = 1
 
  (a b |c d e f)        -> |c d       ;; with arg = 2
 
  (- (car x) |a 3)      -> (car x)|   ;; with arg = -1
 
  (foo (bar |baz) quux) -> |(bar baz) ;; with arg = \[universal-argument] \[universal-argument]
 
(fn &optional ARG)
(defalias 'sp-splice-sexp-killing-around #[256 "\211\300\267\202\n\301\302!\207\211\303\232\203\304 \210\302\262\305\306!\212\307 \210\310 \203L\311\302!\312 \313\314\"\262@V\203<\315\262\202G\211Ab\210\316\305w\210\311\302!\266\202\202O\311\302!)\211\205s\310 \203o\204o\312 \317V\203j\211@\202l\211Ab\266\307 \210\320!\310 \203\263\204\263\317V\203\230\312 @\313\321\"\313\322\"G\\\262B\202[\211\313\314\"\313\323\"GZ\313\321\"\313\322\"G\\B\262\202[\310 \203\327\203\327\211\313\314\"\313\323\"GZ\313\321\"\313\322\"G\\B\262\202[\212\316\305w\210\317V\205\310 \205\212\324\305x\210n)\205`\313\321\"\313\322\"G\\\262B)\206[\212\325 \210\317V\205?\310 \205?\312 @b\205?`\313\314\"\262V\205?\212\324\305x\210n)\205?`\313\321\"\313\322\"G\\\262B)\206[\211\313\314\"\313\323\"GZ\313\321\"\313\322\"G\\B\262\211A\262\242\326    \317V?\205p\327$\266\204\207" [#s(hash-table size 1 test equal rehash-size 1.5 rehash-threshold 0.8125 purecopy t data ((-4) 6)) sp-splice-sexp-killing-forward 1 (16) sp-backward-up-sexp nil prefix-numeric-value sp-skip-backward-to-symbol sp-point-in-comment sp-get-enclosing-sexp sp-get-comment-bounds plist-get :beg t "    \n " 0 sp--next-thing-selection :end :suffix :prefix "     " sp-backward-symbol sp--splice-sexp-do-killing end] 14 (#$ . 280463) "P"])
(defalias 'sp-raise-sexp 'sp-splice-sexp-killing-around)
#@820 Convolute balanced expressions.
 
Save the expressions preceding point and delete them.  Then
splice the resulting expression.  Wrap the current enclosing list
with the delimiters of the spliced list and insert the saved
expressions.
 
If point is in a symbol, move to end of symbol before convolving.
 
With ARG positive N, move up N lists before wrapping.
 
Examples:
 
We want to move the `while' before the `let'.
 
​  (let ((stuff 1)             (while (we-are-good)
​        (other 2))              (let ((stuff 1)
​    (while (we-are-good)  ->          (other 2))
​     |(do-thing 1)               |(do-thing 1)
​      (do-thing 2)                (do-thing 2)
​      (do-thing 3)))              (do-thing 3)))
 
  (forward-char (sp-get env |:op-l)) -> (sp-get env (forward-char |:op-l))
 
(fn &optional ARG)
(defalias 'sp-convolute-sexp #[256 "\212\301 \203    \302 \210\303\304\305!)\262\203\306 \210\307 \310 \211\311\212\312\313\"\312\314\"GZb\210\315 )\312\313\"\"\262\311\312\316\"\312\317\"GZ\212\320 )\"\262\307 \321\312\313\"\312\316\"\312\317\"G[\312\322\"G[$\\U\205\210\311\212\312\316\"\312\317\"GZb\210\323 \315 ])\312\316\"\312\317\"GZ\"\262\310!\211\312\313\"b\210c\210\312\316\"\312\317\"GZb\210\203\255\202\256\324\261\210\310 \325\312\316\"\312\313\"\"\266    )\326 \207" [inhibit-changing-match-data sp-point-in-symbol sp-forward-symbol " " t looking-at just-one-space buffer-size sp-get-enclosing-sexp delete-and-extract-region plist-get :end :cl sp-backward-whitespace :beg :prefix sp-forward-whitespace - :suffix line-beginning-position "" sp--indent-region indent-according-to-mode] 15 (#$ . 283026) "p"])
#@427 Absorb previous expression.
 
Save the expressions preceding point and delete them.  Then slurp
an expression backward and insert the saved expressions.
 
With ARG positive N, absorb that many expressions.
 
Examples:
 
​  (do-stuff 1)         (save-excursion
​  (save-excursion  ->   |(do-stuff 1)
​   |(do-stuff 2))        (do-stuff 2))
 
  foo bar (concat |baz quux) -> (concat |foo bar baz quux) ;; 2
 
(fn &optional ARG)
(defalias 'sp-absorb-sexp #[256 "\300 \210`\301 \210`{`|\210\302!\210\300 \210\301 \210\211c\210\212\303 \210\304 \210)\266\300 \207" [sp-forward-whitespace sp-beginning-of-sexp sp-backward-slurp-sexp sp-backward-up-sexp indent-sexp] 5 (#$ . 284708) "p"])
#@636 Move all expression preceding point except the first one out of the current list.
 
With ARG positive N, keep that many expressions from the start of
the current list.
 
This is similar as `sp-backward-barf-sexp' but it also drags the
first N expressions with the delimiter.
 
Examples:
 
​  (save-excursion     â€‹(do-stuff 1)
​    (do-stuff 1)      (do-stuff 2)
​    (do-stuff 2)  ->  (save-excursion
​   |(do-stuff 3))      |(do-stuff 3))
 
​  (while not-done-yet       (execute-only-once)
​    (execute-only-once) ->  (while not-done-yet    ;; arg = 2
​   |(execute-in-loop))       |(execute-in-loop))
 
(fn &optional ARG)
(defalias 'sp-emit-sexp #[256 "\300\212\301 \210`\302!\210\303\304!\210\211`{\262\211`|\266)\212\305\306!\210)\307 \210\211c\210\212\310 \210\311 )\207" [nil sp-beginning-of-sexp sp-forward-sexp sp-skip-forward-to-symbol t sp-backward-barf-sexp (4) sp-down-sexp sp-backward-up-sexp indent-sexp] 5 (#$ . 285401) "p"])
#@477 Move the expression after point before the enclosing balanced expression.
 
The point moves with the extracted expression.
 
With ARG positive N, extract N expressions after point.
 
With ARG negative -N, extract N expressions before point.
 
With ARG being raw prefix argument \[universal-argument], extract all the expressions
up until the end of enclosing list.
 
If the raw prefix is negative, this behaves as \[universal-argument] `sp-backward-barf-sexp'.
 
(fn &optional ARG)
(defalias 'sp-extract-before-sexp #[256 "\211\301\232\203\n\302\303!\207\304!\210\305 \306\211\211\211\212\307 \262\310 \262\311\312\"\311\313\"GZ\262b\210\212\314\306x\210n)\203Q\315 \211\311\316\"U\203L\311\316\"\311\312\"|\210\266\202T\317\262\320\"\262\211\203l\315 \211\311\316\"\311\312\"|\266\311\316\"\311\321\"GZ\262b\210\322\261\210\323\311\316\"\311\321\"GZ\311\312\"\"\266)\324\325\326!\306\317\327#)\266\203\203\260\330\326!\211@A|\266\311\316\"\311\321\"GZ\262b\207" [inhibit-changing-match-data (-4) sp-backward-barf-sexp (4) sp-select-next-thing sp-get-enclosing-sexp nil region-beginning region-end plist-get :end :cl "     " sp-get-whitespace :beg t delete-and-extract-region :prefix "\n" sp--indent-region "^[\n     ]+\\'" thing-at-point line string-match bounds-of-thing-at-point] 13 (#$ . 286363) "P"])
#@536 Move the expression after point after the enclosing balanced expression.
 
The point moves with the extracted expression.
 
With ARG positive N, extract N expressions after point.
 
With ARG negative -N, extract N expressions before point.
 
With ARG being raw prefix argument \[universal-argument], extract all the
expressions up until the end of enclosing list.
 
With ARG being negative raw prefix argument \[negative-argument] \[universal-argument], extract all the
expressions up until the start of enclosing list.
 
(fn &optional ARG)
(defalias 'sp-extract-after-sexp #[256 "\302!\210\203\303\304 \305\303\211\211\211\212\306 \262\307 \262\310\311\"\310\312\"GZ\262b\210\212\313\303x\210n)\203Y\314 \211\310\315\"U\203T\310\315\"\310\311\"|\210\310\311\"\310\315\"Z\262\266\202\\\316\262\317\"\262\211\203\205\314 \211\310\315\"\310\311\"|\266\211\310\311\"\310\315\"Z\\\262\266\320\310\311\"G#b\266\321\261\210\322\310\315\"\310\323\"GZ\310\311\"\"\266`\262)\305\262\324\325\326!\303\316\327#)\266\203\203\326\330\326!\211@A|\210\211A@Z\262\210\331\332 \303\316#\203\371\314 \211\310\315\"\310\311\"|\210\310\311\"\310\315\"Z\262\266Zb\266\206)\207\304 \305\303\211\211\211\212\306 \262\307 \262\310\311\"\310\312\"GZ\262b\210\212\313\303x\210n)\203P\314 \211\310\315\"U\203K\310\315\"\310\311\"|\210\310\311\"\310\315\"Z\262\266\202S\316\262\317\"\262\211\203|\314 \211\310\315\"\310\311\"|\266\211\310\311\"\310\315\"Z\\\262\266\320\310\311\"G#b\266\321\261\210\322\310\315\"\310\323\"GZ\310\311\"\"\266`\262)\305\262\324\325\326!\303\316\327#)\266\203\203\315\330\326!\211@A|\210\211A@Z\262\210\331\332 \303\316#\203\360\314 \211\310\315\"\310\311\"|\210\310\311\"\310\315\"Z\262\266Zb\207" [case-fold-search inhibit-changing-match-data sp-select-next-thing nil sp-get-enclosing-sexp 0 region-beginning region-end plist-get :end :cl "     " sp-get-whitespace :beg t delete-and-extract-region - "\n" sp--indent-region :prefix "^[\n     ]+\\'" thing-at-point line string-match bounds-of-thing-at-point sp--looking-back sp--get-opening-regexp] 14 (#$ . 287710) "P"])
#@120 Skip forward past the whitespace characters.
With non-nil ARG return number of characters skipped.
 
(fn &optional ARG)
(defalias 'sp-forward-whitespace #[256 "\300\301w\203 \211\202\f`\207" ["     \n" nil] 3 (#$ . 289912) "^P"])
(put 'sp-forward-whitespace 'CUA 'move)
#@121 Skip backward past the whitespace characters.
With non-nil ARG return number of characters skipped.
 
(fn &optional ARG)
(defalias 'sp-backward-whitespace #[256 "\300\301x\203 \211\202\f`\207" ["     \n" nil] 3 (#$ . 290188) "^P"])
(put 'sp-backward-whitespace 'CUA 'move)
#@670 Split the list or string the point is on into two.
 
If ARG is a raw prefix \[universal-argument] split all the sexps in current expression
in separate lists enclosed with delimiters of the current
expression.
 
See also setting `sp-split-sexp-always-split-as-string' which
determines how sexps inside strings are treated and also for a
discussion of how to automatically add concatenation operators to
string splitting.
 
Examples:
 
  (foo bar |baz quux)   -> (foo bar) |(baz quux)
 
  "foo bar |baz quux"   -> "foo bar" |"baz quux"
 
  ([foo |bar baz] quux) -> ([foo] |[bar baz] quux)
 
  (foo bar| baz quux) -> (foo) (bar|) (baz) (quux) ;; \[universal-argument]
 
(fn ARG)
(defalias 'sp-split-sexp #[257 "\211\301\267\202i\302 \211\205h\211@\303\304\"\262@\303\305\"\262@\303\306\"\262@\303\307\"\262A\262\237\262\212\211b\210\310G[!\210\203^@\303\307\"b\210c\210\303\306\"b\210c\266A\262\202>b\210\310G!)\266\204\207\205o\311 \211\203\201\212\312 ASb\210\313\314!)\202\204\313\314!\211\205\310\211\315\303\304\"\316\317#\210\203\247\303\305\"c\210\212\303\304\"c\210)\202\276\320\321!\303\305\"c\210[u\210\212\322 \210\303\304\"c\210)\315\303\304\"\323\317#\262\262\207" [sp-split-sexp-always-split-as-string #s(hash-table size 1 test equal rehash-size 1.5 rehash-threshold 0.8125 purecopy t data ((4) 6)) sp-get-list-items plist-get :op :cl :beg :end delete-char sp-point-in-string sp-get-quoted-string-bounds sp-get-enclosing-sexp 1 sp--run-hook-with-args :pre-handlers split-sexp sp-backward-whitespace t sp-forward-whitespace :post-handlers] 10 (#$ . 290467) "P"])
#@245 Join the expressions PREV and NEXT if they are of the same type.
 
The expression with smaller :beg is considered the previous one,
so the input order does not actually matter.
 
Return the information about resulting expression.
 
(fn PREV NEXT)
(defalias 'sp--join-sexp #[514 "\300\301\"\262\300\301\"\262\232\203\251\300\302\"\262\300\302\"\262\232\203\251\300\303\"\262\300\303\"\262V\203<\262\262\211\300\303\"\300\304\"GZ\300\303\"\300\301\"G\\|\266\300\305\"\300\302\"GZ\300\305\"|\266\303\300\303\"\262\305\306\300\305\"\300\301\"G\300\304\"G#\262\300\302\"G\262Z\301\300\301\"\262\302\300\302\"\262\304\n\300\304\"\262\257\n\207\307\310!\207" [plist-get :op :cl :beg :prefix :end - sp-message :different-type] 15 (#$ . 292087)])
#@727 Join the sexp before and after point if they are of the same type.
 
If ARG is positive N, join N expressions after the point with the
one before the point.
 
If ARG is negative -N, join N expressions before the point with
the one after the point.
 
If ARG is a raw prefix \[universal-argument] join all the things up until the end
of current expression.
 
The joining stops at the first expression of different type.
 
Examples:
 
  (foo bar) |(baz)                    -> (foo bar |baz)
 
  (foo) |(bar) (baz)                  -> (foo |bar baz) ;; 2
 
  [foo] [bar] |[baz]                  -> [foo bar |baz] ;; -2
 
  (foo bar (baz)| (quux) (blob bluq)) -> (foo bar (baz| quux blob bluq)) ;; \[universal-argument]
 
(fn &optional ARG)
(defalias 'sp-join-sexp #[256 "\300!\301!\302!\212\303\304!!)\305\212\203c\306U\203c\307\304!!\262\310V\203;\211\311\312\"\262\311\313\"\262V\202P\310W\203}\211\311\313\"\262\311\312\"\262W\203}\314\"\262\307\304!!\262\202#\310V\203}\307\304!!\262\314\"\262S\262\202c)\207" [sp--raw-argument-p prefix-numeric-value abs sp-backward-sexp sp--signum nil 4 sp-forward-sexp 0 plist-get :beg :end sp--join-sexp] 11 (#$ . 292886) "P"])
#@409 Return the bounds of selection over next thing.
 
See `sp-select-next-thing' for the meaning of ARG.
 
If POINT is non-nil, it is assumed it's a point inside the buffer
from which the selection extends, either forward or backward,
depending on the value of ARG.
 
The return value has the same format as `sp-get-sexp'.  This does
not necessarily represent a valid balanced expression!
 
(fn &optional ARG POINT)
(defalias 'sp--next-thing-selection #[512 "\212\300!\301!\211\302\211\211\211\203\237\303U\203\237\304 \211\204&\305\306!\210\202S\212\211\307\310\"\307\311\"GZ\262b\210\312\313!\211\203Q\211\307\310\"\262\307\311\"\262\307\314\"\262\210\210)    \204\233\312 \211\203\232\211\307\315\"\262\307\315\"\262\232\203\206\262\307\310\"\307\311\"GZ\262\262\202\232\211\307\315\"\262    \307\316\"\262\307\317\"\262\210\210\210\202\277\203    \320U\203    \304 \211\204\270\305\306!\210\202\344\212\211\307\315\"\307\316\"G\\\262b\210\312 \211\203\342\211\307\315\"\262    \307\316\"\262\307\317\"\262\210\210)\210\204\277\312\313!\211\203\211\307\310\"\262\307\311\"\262\307\314\"\262\210\210\202\277\203N\321!\322U\203N\304 \211\204$\305\306!\210\202J\211\307\315\"\262\307\310\"\262\307\316\"\262\307\311\"\262\307\317\"\262\307\314\"\262\210\210\202\277\323V\203\316\324 \211S\262    \n\206i\307\315\"\262\262\323V\203\227\211\203\227\324 \262\211\307\315\"\262\211    W\203\216\262\211\262    \210S\262    \202k\n\203\244\nU\204\270\307\315\"\262    \307\316\"\262\307\317\"\262\210\211\307\310\"\262\307\311\"\262\307\314\"\266\204\202\277\323W\203Q\325 \211T\262    \n\206\351\307\310\"\262\262\323W\203\211\203\325 \262\211\307\310\"\262\211V\203\262\211\262\210T\262    \202\353\211\307\315\"\262    \307\316\"\262\307\317\"\262\210\n\2038\nU\204L\307\310\"\262\307\311\"\262\307\314\"\262\210\266\202\277\323U\203\277\304 \211\204e\305\306!\210\202\276\212\211\307\315\"\307\316\"G\\\262b\210\312 \211\203\217\211\307\315\"\262    \307\316\"\262\307\317\"\262\210\210)\212\211\307\310\"\307\311\"GZ\262b\210\312\313!\211\203\274\211\307\310\"\262\307\311\"\262\307\314\"\262\210\210)\210\315\310\316\311    \317\n\314 \257\f\266\210)\207" [sp--raw-argument-p prefix-numeric-value "" 4 sp-get-enclosing-sexp error "No enclosing expression" plist-get :end :cl sp-get-thing t :suffix :beg :op :prefix -4 abs 16 0 sp-forward-sexp sp-backward-sexp] 22 (#$ . 294091)])
#@1326 Set active region over next thing as recognized by `sp-get-thing'.
 
If ARG is positive N, select N expressions forward.
 
If ARG is negative -N, select N expressions backward.
 
If ARG is a raw prefix \[universal-argument] select all the things up until the
end of current expression.
 
If ARG is a raw prefix \[universal-argument] \[universal-argument] select the current expression (as
if doing `sp-backward-up-sexp' followed by
`sp-select-next-thing').
 
If ARG is number 0 (zero), select all the things inside the
current expression.
 
If POINT is non-nil, it is assumed it's a point inside the buffer
from which the selection extends, either forward or backward,
depending on the value of ARG.
 
If the currently active region contains a balanced expression,
following invocation of `sp-select-next-thing' will select the
inside of this expression .  Therefore calling this function
twice with no active region will select the inside of the next
expression.
 
If the point is right in front of the expression any potential
prefix is ignored.  For example, '|(foo) would only select (foo)
and not include ' in the selection.  If you wish to also select
the prefix, you have to move the point backwards.
 
With `sp-navigate-consider-symbols' symbols and strings are also
considered balanced expressions.
 
(fn &optional ARG POINT)
(defalias 'sp-select-next-thing #[512 "\300\"`\301\302\"\262\301\303\"\262\304\203\204(\305o\203%\306\202&\307!\210\310 \203z\311 \312 \301\302\"U\206H\301\302\"\301\313\"GZU\262\203x\211\301\303\"\262U\203x\301\302\"\301\314\"G\\\262\301\303\"\301\315\"GZ\262\210\316\262\266\317!\320V\203\220\321!\204\220U\204\243\211\204\243\301\302\"\301\313\"GZ\262\262\322\316\211#\210b\210\207" [sp--next-thing-selection plist-get :beg :end nil user-error "At beginning of buffer" "At end of buffer" region-active-p region-beginning region-end :prefix :op :cl t prefix-numeric-value 0 sp--raw-argument-p push-mark] 15 (#$ . 296648) "P"])
#@264 Set active region over ARG previous things as recognized by `sp-get-thing'.
 
If ARG is negative -N, select that many expressions forward.
 
With `sp-navigate-consider-symbols' symbols and strings are also
considered balanced expressions.
 
(fn &optional ARG POINT)
(defalias 'sp-select-previous-thing #[512 "\300\301!\"\207" [sp-select-next-thing sp--negate-argument] 5 (#$ . 298668) "P"])
#@106 Just like `sp-select-next-thing' but run `exchange-point-and-mark' afterwards.
 
(fn &optional ARG POINT)
(defalias 'sp-select-next-thing-exchange #[512 "\300\"\301 \210\207" [sp-select-next-thing exchange-point-and-mark] 5 (#$ . 299065) "P"])
#@110 Just like `sp-select-previous-thing' but run `exchange-point-and-mark' afterwards.
 
(fn &optional ARG POINT)
(defalias 'sp-select-previous-thing-exchange #[512 "\300\"\301 \210\207" [sp-select-previous-thing exchange-point-and-mark] 5 (#$ . 299317) "P"])
#@386 Set mark ARG balanced expressions from point.
The place mark goes is the same place \[sp-forward-sexp] would
move to with the same argument.
Interactively, if this command is repeated
or (in Transient Mark mode) if the mark is active,
it marks the next ARG sexps after the ones already marked.
This command assumes point is not in a string or comment.
 
(fn &optional ARG ALLOW-EXTEND)
(defalias 'sp-mark-sexp #[512 "\211\203L    =\203\304\305!\204\n\203L \203L\203\"\306!\202.\304 `W\203-\307\202.\310\262\311\212`\304 b\210\312!\210\313`\"\204F\314\315!\210`\262)!\207\316\212\312\306!!\210`)\317\305#\207" [last-command this-command transient-mark-mode mark-active mark t prefix-numeric-value -1 1 set-mark sp-forward-sexp sp-region-ok-p user-error "Can not extend selection: region invalid" push-mark nil] 7 (#$ . 299581) "P\np"])
#@925 Delete a character forward or move forward over a delimiter.
 
If on an opening delimiter, move forward into balanced expression.
 
If on a closing delimiter, refuse to delete unless the balanced
expression is empty, in which case delete the entire expression.
 
If the delimiter does not form a balanced expression, it will be
deleted normally.
 
With a numeric prefix argument N > 0, delete N characters forward.
 
With a numeric prefix argument N < 0, delete N characters backward.
 
With a numeric prefix argument N = 0, simply delete a character
forward, without regard for delimiter balancing.
 
If ARG is raw prefix argument \[universal-argument], delete
characters forward until a closing delimiter whose deletion would
break the proper pairing is hit.
 
Examples:
 
 (quu|x "zot") -> (quu| "zot")
 
 (quux |"zot") -> (quux "|zot") -> (quux "|ot")
 
 (foo (|) bar) -> (foo | bar)
 
 |(foo bar) -> (|foo bar)
 
(fn &optional ARG)
(defalias 'sp-delete-char #[256 "\203N\302\303!\211\203\304\202\305!\211\306V\2039\211\306V\205J\307 \211\203:\211@G\206-\310[u\210\311@GAG\\!\210\211\262\203G\211S\262\202\312 \203\\\212\302u\210\312 )\204\\\306\262\202\313\314\315\316!!!\203\314\317 \320\306\321\322\323!\324\"\325$\216\326 )\262\211\203\275\211\327\330\"\327\331\"GZ\262`U\203\225\306\262\202\304\211\327\332\"\262`U\203\263\211\327\332\"\327\333\"G\\\262b\210\202\304\311\334\306!G!\210\202\304\311\334\306!G!\210\210\211S\262\202\312 \204\345\212\302u\210\312 )\203\345\302u\210\211S\262\202\313\335\315\316!!!\203\317 \320\306\321\322\323!\336\"\325$\216\326 )\262\203 \306\262\202\311\334\306!G!\210\211S\262\202\337\301!\203.    \203.\340\310!\210\211S\262\202\311\310!\210\211S\262\202\211\306U\203E\311\310!\202J\341\342!!\266\202)\207\303!\211\203Y\304\202\\\305!\211\306V\203\201\211\306V\205\222\307 \211\203\202\211@G\206u\310[u\210\311@GAG\\!\210\211\262\203\217\211S\262\202b\312 \203\244\212\302u\210\312 )\204\244\306\262\202b\313\314\315\316!!!\203\317 \320\306\321\322\323!\343\"\325$\216\326 )\262\211\203\211\327\330\"\327\331\"GZ\262`U\203\335\306\262\202\f\211\327\332\"\262`U\203\373\211\327\332\"\327\333\"G\\\262b\210\202\f\311\334\306!G!\210\202\f\311\334\306!G!\210\210\211S\262\202b\312 \204-\212\302u\210\312 )\203-\302u\210\211S\262\202b\313\335\315\316!!!\203a\317 \320\306\321\322\323!\344\"\325$\216\326 )\262\203S\306\262\202b\311\334\306!G!\210\211S\262\202b\337\301!\203v    \203v\340\310!\210\211S\262\202b\311\310!\210\211S\262\202b\211\306U\203\215\311\310!\202\222\341\342!!\207" [case-fold-search hungry-delete-mode nil sp--raw-argument-p 100000000 prefix-numeric-value 0 sp-point-in-empty-sexp 1 delete-char sp-point-in-string sp--looking-at sp--get-opening-regexp sp--get-pair-list-context navigate match-data make-byte-code "\301\300\302\"\207" vconcat vector [set-match-data evaporate] 3 sp-get-thing plist-get :end :cl :beg :op match-string sp--get-closing-regexp [set-match-data evaporate] boundp hungry-delete-forward sp-backward-delete-char sp--negate-argument [set-match-data evaporate] [set-match-data evaporate]] 10 (#$ . 300439) "P"])
#@929 Delete a character backward or move backward over a delimiter.
 
If on a closing delimiter, move backward into balanced expression.
 
If on a opening delimiter, refuse to delete unless the balanced
expression is empty, in which case delete the entire expression.
 
If the delimiter does not form a balanced expression, it will be
deleted normally.
 
With a numeric prefix argument N > 0, delete N characters backward.
 
With a numeric prefix argument N < 0, delete N characters forward.
 
With a numeric prefix argument N = 0, simply delete a character
backward, without regard for delimiter balancing.
 
If ARG is raw prefix argument \[universal-argument], delete
characters backward until a opening delimiter whose deletion would
break the proper pairing is hit.
 
Examples:
 
 ("zot" q|uux) -> ("zot" |uux)
 
 ("zot"| quux) -> ("zot|" quux) -> ("zo|" quux)
 
 (foo (|) bar) -> (foo | bar)
 
 (foo bar)| -> (foo bar|)
 
(fn &optional ARG)
(defalias 'sp-backward-delete-char #[256 "\203     \304=\203 \305 \207\n\203`\306\307!\211\203\310\202!\311!\211\312V\203K\211\312V\205\\\313 \211\203G\211@G\206:\314[u\210\315@GAG\\!\210\211\262\203T\211S\262\202'\316 \203i\212\317u\210\316 )\204i\312\262\202'\320\321\322\323!!!\203\334\324 \325\312\326\327\330!\331\"\332$\216\333\334!)\262\211\203\314\211\335\336\"\262`U\203\251\211\335\336\"\335\337\"GZ\262b\210\202\324\211\335\340\"\335\341\"G\\\262`U\203\301\312\262\202\324\315\342\312!G[!\210\202\324\315\342\312!G[!\210\210\211S\262\202'\316 \204\365\212\317u\210\316 )\203\365\317u\210\211S\262\202'\320\343\322\323!!!\203+\324 \325\312\326\327\330!\344\"\332$\216\333\334!)\262\203\312\262\202'\315\342\312!G[!\210\211S\262\202'\345\303!\203@ \203@\346\314!\210\211S\262\202'\315\317!\210\211S\262\202'\211\312U\203W\315\317!\202\\\347\350!!\266\202)\207\307!\211\203k\310\202n\311!\211\312V\203\230\211\312V\205\251\313 \211\203\224\211@G\206\207\314[u\210\315@GAG\\!\210\211\262\203\241\211S\262\202t\316 \203\266\212\317u\210\316 )\204\266\312\262\202t\320\321\322\323!!!\203)\324 \325\312\326\327\330!\351\"\332$\216\333\334!)\262\211\203\211\335\336\"\262`U\203\366\211\335\336\"\335\337\"GZ\262b\210\202!\211\335\340\"\335\341\"G\\\262`U\203\312\262\202!\315\342\312!G[!\210\202!\315\342\312!G[!\210\210\211S\262\202t\316 \204B\212\317u\210\316 )\203B\317u\210\211S\262\202t\320\343\322\323!!!\203x\324 \325\312\326\327\330!\352\"\332$\216\333\334!)\262\203i\312\262\202t\315\342\312!G[!\210\211S\262\202t\345\303!\203\215 \203\215\346\314!\210\211S\262\202t\315\317!\210\211S\262\202t\211\312U\203\244\315\317!\202\251\347\350!!\207" [sp-autodelete-wrap sp-last-operation case-fold-search hungry-delete-mode sp-wrap-region sp-backward-unwrap-sexp nil sp--raw-argument-p 100000000 prefix-numeric-value 0 sp-point-in-empty-sexp 1 delete-char sp-point-in-string -1 sp--looking-back sp--get-closing-regexp sp--get-pair-list-context navigate match-data make-byte-code "\301\300\302\"\207" vconcat vector [set-match-data evaporate] 3 sp-get-thing t plist-get :end :cl :beg :op match-string sp--get-opening-regexp [set-match-data evaporate] boundp hungry-delete-backward sp-delete-char sp--negate-argument [set-match-data evaporate] [set-match-data evaporate]] 10 (#$ . 303655) "P"])
(byte-code "\300\301\302\303#\210\300\304\302\303#\207" [put sp-backward-delete-char delete-selection supersede sp-delete-char] 4)
#@170 Return non-nil if point is in empty sexp or string.
 
The return value is active cons pair of opening and closing sexp
delimiter enclosing this sexp.
 
(fn &optional POS)
(defalias 'sp-point-in-empty-sexp #[256 "\211\206`\262\301\211\302\303\304\305!!!\203[\306\307!\262\301\310\307\203G\203G@\2030\301\262\202;\211@\232\203;\211\262\210\211T\262A\262\202\266\211\262\262\311\312A!!\205^\211\202^\313!\207" [sp-pair-list nil sp--looking-back sp--get-opening-regexp sp--get-pair-list-context navigate match-string 0 t sp--looking-at regexp-quote sp-point-in-empty-string] 10 (#$ . 307143)])
#@168 Return non-nil if point is in empty string.
 
The return value is actually cons pair of opening and closing
string delimiter enclosing this string.
 
(fn &optional POS)
(defalias 'sp-point-in-empty-string #[256 "\211\206`\262\300 \205E\212d`U\203\301\202\302u\210\300 ?)\205E\212\303u\210\300 )?\205E\212\304\305!8\306\301=\203=g\202>!\211B\266\202)\207" [sp-point-in-string t nil -1 3 syntax-ppss char-to-string] 5 (#$ . 307769)])
#@142 Return non-nil if word killing commands should kill subwords.
This is the case if `subword-mode' is enabled and
`sp-use-subword' is non-nil.
(defalias 'sp--use-subword #[0 "\205 \302\301!\205     \207" [sp-use-subword subword-mode boundp] 2 (#$ . 308222)])
#@45 Kill N words or subwords.
 
(fn &optional N)
(defalias 'sp--kill-word #[256 "\211\206\300\301 \203\302!\202\303!\207" [1 sp--use-subword subword-kill kill-word] 4 (#$ . 308485)])
#@53 Move forward N words or subwords.
 
(fn &optional N)
(defalias 'sp--forward-word #[256 "\211\206\300\301 \203\302!\202\211v\207" [1 sp--use-subword subword-forward] 4 (#$ . 308677)])
#@54 Move backward N words or subwords.
 
(fn &optional N)
(defalias 'sp--backward-word #[256 "\211\206\300\301 \203\302!\202\211\206\300[v\207" [1 sp--use-subword subword-backward] 4 (#$ . 308872)])
#@288 Kill a symbol forward, skipping over any intervening delimiters.
 
With ARG being positive number N, repeat that many times.
 
With ARG being Negative number -N, repeat that many times in
backward direction.
 
See `sp-forward-symbol' for what constitutes a symbol.
 
(fn &optional ARG WORD)
(defalias 'sp-kill-symbol #[512 "\203\243\301\302V\203\233\302V\205\241\303 \211\203\220\211\304\305\"\304\306\"GZ`W\2037\2030`\202Y\304\305\"\202Y\212\307 \210`)\304\305\"\304\306\"GZU\203O`\202Y\304\305\"\304\306\"GZ\203}\212\310 \210`)\311\"\203n\211\202x\304\312\"\304\313\"G\\\262\202\207\304\312\"\304\313\"G\\b\210\314\"\266\210\315 \210S\262\202\f\316\317!\")\207\302V\2038\302V\205>\303 \211\203-\211\304\305\"\304\306\"GZ`W\203\324\203\315`\202\366\304\305\"\202\366\212\307 \210`)\304\305\"\304\306\"GZU\203\354`\202\366\304\305\"\304\306\"GZ\203\212\310 \210`)\311\"\203 \211\202\304\312\"\304\313\"G\\\262\202$\304\312\"\304\313\"G\\b\210\314\"\266\210\315 \210S\262\202\251\316\317!\"\207" [case-fold-search nil 0 sp-get-symbol plist-get :beg :prefix sp-skip-forward-to-symbol sp--forward-word sp-region-ok-p :end :suffix kill-region sp--cleanup-after-kill sp-backward-kill-symbol sp--negate-argument] 10 (#$ . 309082) "p"])
#@221 Kill a word forward, skipping over intervening delimiters.
 
With ARG being positive number N, repeat that many times.
 
With ARG being Negative number -N, repeat that many times in
backward direction.
 
(fn &optional ARG)
(defalias 'sp-kill-word #[256 "\300\301\"\207" [sp-kill-symbol t] 4 (#$ . 310400) "p"])
#@349 Delete a symbol forward, skipping over any intervening delimiters.
 
Deleted symbol does not go to the clipboard or kill ring.
 
With ARG being positive number N, repeat that many times.
 
With ARG being Negative number -N, repeat that many times in
backward direction.
 
See `sp-forward-symbol' for what constitutes a symbol.
 
(fn &optional ARG WORD)
(defalias 'sp-delete-symbol #[512 "\302\303\"*\207" [kill-ring select-enable-clipboard nil sp-kill-symbol] 5 (#$ . 310716) "p"])
#@280 Delete a word forward, skipping over intervening delimiters.
 
Deleted word does not go to the clipboard or kill ring.
 
With ARG being positive number N, repeat that many times.
 
With ARG being Negative number -N, repeat that many times in
backward direction.
 
(fn &optional ARG)
(defalias 'sp-delete-word #[256 "\300\301\"\207" [sp-delete-symbol t] 4 (#$ . 311205) "p"])
#@289 Kill a symbol backward, skipping over any intervening delimiters.
 
With ARG being positive number N, repeat that many times.
 
With ARG being Negative number -N, repeat that many times in
forward direction.
 
See `sp-backward-symbol' for what constitutes a symbol.
 
(fn &optional ARG WORD)
(defalias 'sp-backward-kill-symbol #[512 "\203\252\301\302V\203\242\302V\205\250\303\304!\211\203\227\211`\305\306\"\305\307\"G\\W\203>\2031`\202`\305\306\"\305\307\"G\\\202`\212\310 \210`)\305\306\"\305\307\"G\\U\203V`\202`\305\306\"\305\307\"G\\\203\204\212\311 \210`)\312\"\203u\211\202\305\313\"\305\314\"GZ\262\202\216\305\313\"\305\314\"GZb\210\315\"\266\210\316 \210S\262\202\f\317\320!\")\207\302V\203F\302V\205L\303\304!\211\203;\211`\305\306\"\305\307\"G\\W\203\342\203\325`\202\305\306\"\305\307\"G\\\202\212\310 \210`)\305\306\"\305\307\"G\\U\203\372`\202\305\306\"\305\307\"G\\\203(\212\311 \210`)\312\"\203\211\202#\305\313\"\305\314\"GZ\262\2022\305\313\"\305\314\"GZb\210\315\"\266\210\316 \210S\262\202\260\317\320!\"\207" [case-fold-search nil 0 sp-get-symbol t plist-get :end :suffix sp-skip-backward-to-symbol sp--backward-word sp-region-ok-p :beg :prefix kill-region sp--cleanup-after-kill sp-kill-symbol sp--negate-argument] 10 (#$ . 311584) "p"])
#@222 Kill a word backward, skipping over intervening delimiters.
 
With ARG being positive number N, repeat that many times.
 
With ARG being Negative number -N, repeat that many times in
backward direction.
 
(fn &optional ARG)
(defalias 'sp-backward-kill-word #[256 "\300\301\"\207" [sp-backward-kill-symbol t] 4 (#$ . 312939) "p"])
#@350 Delete a symbol backward, skipping over any intervening delimiters.
 
Deleted symbol does not go to the clipboard or kill ring.
 
With ARG being positive number N, repeat that many times.
 
With ARG being Negative number -N, repeat that many times in
forward direction.
 
See `sp-backward-symbol' for what constitutes a symbol.
 
(fn &optional ARG WORD)
(defalias 'sp-backward-delete-symbol #[512 "\302\303\"*\207" [kill-ring select-enable-clipboard nil sp-backward-kill-symbol] 5 (#$ . 313274) "p"])
#@281 Delete a word backward, skipping over intervening delimiters.
 
Deleted word does not go to the clipboard or kill ring.
 
With ARG being positive number N, repeat that many times.
 
With ARG being Negative number -N, repeat that many times in
backward direction.
 
(fn &optional ARG)
(defalias 'sp-backward-delete-word #[256 "\300\301\"\207" [sp-backward-delete-symbol t] 4 (#$ . 313782) "p"])
#@232 Delete the text between point and mark, like `delete-region'.
 
BEG and END are the bounds of region to be deleted.
 
If that text is unbalanced, signal an error instead.
With a prefix argument, skip the balance check.
 
(fn BEG END)
(defalias 'sp-delete-region #[514 "\204\302\"\204\303\304\305\306\"!\205\307|\207" [current-prefix-arg this-command sp-region-ok-p user-error sp-message :unbalanced-region :return delete-region] 6 (#$ . 314180) "r"])
#@227 Kill the text between point and mark, like `kill-region'.
 
BEG and END are the bounds of region to be killed.
 
If that text is unbalanced, signal an error instead.
With a prefix argument, skip the balance check.
 
(fn BEG END)
(defalias 'sp-kill-region #[514 "\204\302\"\204\303\304\305\306\"!\205\307\211\"\207" [current-prefix-arg this-command sp-region-ok-p user-error sp-message :unbalanced-region :return kill-region] 7 (#$ . 314647) "r"])
#@235 Reindent the current defun.
 
If point is inside a string or comment, fill the current
paragraph instead, and with ARG, justify as well.
 
Otherwise, reindent the current defun, and adjust the position
of the point.
 
(fn &optional ARG)
(defalias 'sp-indent-defun #[256 "\300 \203    \301!\207i\302 \212\303 \210\304 \210\305 \210)\306\"\207" [sp-point-in-string-or-comment fill-paragraph sp--current-indentation end-of-defun beginning-of-defun indent-sexp sp--back-to-indentation] 6 (#$ . 315110) "P"])
#@307 Test if region between START and END is balanced.
 
A balanced region is one where all opening delimiters are matched
by closing delimiters.
 
This function does *not* check that the delimiters are correctly
ordered, that is [(]) is correct even though it is not logically
properly balanced.
 
(fn START END)
(defalias 'sp-region-ok-p #[514 "\212\214\302!\302!=\205?}\210\303\304\305 \"!eb\210\306 \307 \210\204\211\310\311!)\262\2034\312\225b\204\313\310\311!)\262\262*\207" [sp-pair-list inhibit-changing-match-data sp-point-in-string sp--get-allowed-regexp -difference sp--get-allowed-pair-list sp-forward-sexp sp-skip-forward-to-symbol t looking-at 0 "[[:blank:]\n]*\\'"] 6 (#$ . 315619) "r"])
#@365 Insert a newline and indent it.
 
This is like `newline-and-indent', but it not only indents the
line that the point is on but also the S-expression following the
point, if there is one.
 
If in a string, just insert a literal newline.
 
If in a comment and if followed by invalid structure, call
`indent-new-comment-line' to keep the invalid structure in a
comment.
(defalias 'sp-newline #[0 "\300 \203\301 \207\302 \203&\303`\304 \"\203#\305 \210\3061 \307 0\207\210\310\207\311 \207\305 \210\31211\307 0\207\210\310\207" [sp-point-in-string newline sp-point-in-comment sp-region-ok-p point-at-eol newline-and-indent (error) indent-sexp nil indent-new-comment-line (error)] 3 (#$ . 316339) nil])
#@95 Insert the comment character and adjust hanging sexps such
  that it doesn't break structure.
(defalias 'sp-comment #[0 "\305 \203\306!G\307U\203\306!c\207    c\207\n\203\335\310`i\311 \312 \313 \314\315\316\"\262b\210\317\320\321 P!\203N\312 U\203N`\262\322 \210\323 `ZT\262\202h\312 U\204h\324 \210\325\326!\\\262\322 \210\323 `Z\262b\210\327\315\330\"\315\316\"\\\"\266\331\"\210\310 \332\314\203\255\203\255@\203\227\310\262\202\241\f@>\203\241\211\262\210\211T\262A\262\202\203\266\211\262A\206\267    i\314U\204\306\333\334!\204\306\326c\210\211c\210\314U?\205\327\212\307y\210\335 )\262\266\206)\207`i\311 \312 \313 \314\315\316\"\262b\210\317\320\321 P!\203\312 U\203`\262\322 \210\323 `ZT\262\202)\312 U\204)\324 \210\325\326!\\\262\322 \210\323 `Z\262b\210\327\315\330\"\315\316\"\\\"\266\331\"\210\310 \332\314\203n\203n@\203X\310\262\202b\f@>\203b\211\262\210\211T\262A\262\202D\266\211\262A\206x    i\314U\204\207\333\334!\204\207\326c\210\211c\210\314U?\205\230\212\307y\210\335 )\262\207" [last-command-event comment-start case-fold-search sp-comment-string major-mode sp-point-in-string-or-comment single-key-description 1 nil sp--current-indentation line-number-at-pos sp-get-hybrid-sexp 0 plist-get :end sp--looking-at-p "\\s-*" sp--get-closing-regexp newline line-end-position sp-backward-sexp skip-syntax-backward " " sp--indent-region :beg sp--back-to-indentation t sp--looking-back-p "\\s-" indent-according-to-mode] 13 (#$ . 317046) nil])
#@43 Wrap following sexp in round parentheses.
(defalias 'sp-wrap-round #[0 "\300\301!\207" [sp-wrap-with-pair "("] 2 (#$ . 318607) nil])
#@41 Wrap following sexp in square brackets.
(defalias 'sp-wrap-square #[0 "\300\301!\207" [sp-wrap-with-pair "["] 2 (#$ . 318746) nil])
#@38 Wrap following sexp in curly braces.
(defalias 'sp-wrap-curly #[0 "\300\301!\207" [sp-wrap-with-pair "{"] 2 (#$ . 318884) nil])
(byte-code "\300\301\302\303\304\305%\210\306\307\310\311\312DD\313\314\315\304\301&\210\306\316\310\311\317DD\320\314\321\304\301&\210\306\322\310\311\323DD\324\314\325\304\301&\210\326\327\330\331\304\301%\210\326\332\333\334\304\301%\210\326\335\336\337\304\301%\210\326\340\302\341\304\301%\207" [custom-declare-group show-smartparens nil "Show smartparens minor mode." :group smartparens custom-declare-variable sp-show-pair-delay funcall function #[0 "\300\207" [0.125] 1] "Time in seconds to delay before showing a matching pair." :type (number :tag "seconds") sp-show-enclosing-pair-commands #[0 "\300\207" [(sp-show-enclosing-pair sp-forward-slurp-sexp sp-backward-slurp-sexp sp-forward-barf-sexp sp-backward-barf-sexp)] 1] "List of commands after which the enclosing pair is highlighted.\n\nAfter the next command the pair will automatically disappear." (repeat symbol) sp-show-pair-from-inside #[0 "\300\207" [nil] 1] "If non-nil, highlight the enclosing pair if immediately after\nthe opening delimiter or before the closing delimiter." boolean custom-declare-face sp-show-pair-match-face ((t (:inherit show-paren-match))) "`show-smartparens-mode' face used for a matching pair." sp-show-pair-mismatch-face ((t (:inherit show-paren-mismatch))) "`show-smartparens-mode' face used for a mismatching pair." sp-show-pair-enclosing ((t (:inherit highlight))) "The face used to highlight pair overlays." sp-show-pair-match-content-face "`show-smartparens-mode' face used for a matching pair's content."] 8)
(defvar sp-show-pair-idle-timer nil)
(defvar sp-show-pair-overlays nil)
(defvar sp-show-pair-previous-match-positions nil)
(defvar sp-show-pair-previous-point nil)
(defvar sp-show-pair-enc-overlays nil)
#@111 Non-nil if Show-Smartparens mode is enabled.
Use the command `show-smartparens-mode' to change this variable.
(defvar show-smartparens-mode nil (#$ . 320738))
(make-variable-buffer-local 'show-smartparens-mode)
#@292 Toggle visualization of matching pairs.  When enabled, any
matching pair is highlighted after `sp-show-pair-delay' seconds
of Emacs idle time if the point is immediately in front or after
a pair.  This mode works similarly to `show-paren-mode', but
support custom pairs.
 
(fn &optional ARG)
(defalias 'show-smartparens-mode #[256 "\304 \305=\203 ?\202\306!\307V\211\203$    \204+\310\n\311\312#\202+ \203+\313 \210\314\315\2035\316\2026\317\"\210\320\321!\203Z\304 \203J\211\304 \232\203Z\322\323\324\203U\325\202V\326#\266\210\327 \210\207" [show-smartparens-mode sp-show-pair-idle-timer sp-show-pair-delay sp-show-pair-overlays current-message toggle prefix-numeric-value 0 run-with-idle-timer t sp-show--pair-function sp-show--pair-delete-overlays run-hooks show-smartparens-mode-hook show-smartparens-mode-on-hook show-smartparens-mode-off-hook called-interactively-p any " in current buffer" message "Show-Smartparens mode %sabled%s" "en" "dis" force-mode-line-update] 8 (#$ . 320956) (byte-code "\206\301C\207" [current-prefix-arg toggle] 1)])
(defvar show-smartparens-mode-hook nil)
(byte-code "\301\302N\204\f\303\301\302\304#\210\305\306\307\310\300!\205\307\211%\207" [show-smartparens-mode-map show-smartparens-mode-hook variable-documentation put "Hook run after entering or leaving `show-smartparens-mode'.\nNo problems result if this variable is not bound.\n`add-hook' automatically binds it.  (This is true for all hook variables.)" add-minor-mode show-smartparens-mode nil boundp] 6)
(defvar show-smartparens-mode-major-mode nil)
(byte-code "\300\301!\210\302\303\304\305\306DD\307\310\311\312\313\314\315\316\317& \207" [make-variable-buffer-local show-smartparens-mode-major-mode custom-declare-variable show-smartparens-global-mode funcall function #[0 "\300\207" [nil] 1] "Non-nil if Show-Smartparens-Global mode is enabled.\nSee the `show-smartparens-global-mode' command\nfor a description of this minor mode.\nSetting this variable directly does not take effect;\neither customize it (see the info node `Easy Customization')\nor call the function `show-smartparens-global-mode'." :set custom-set-minor-mode :initialize custom-initialize-default :group show-smartparens :type boolean] 12)
#@401 Toggle Show-Smartparens mode in all buffers.
With prefix ARG, enable Show-Smartparens-Global mode if ARG is positive;
otherwise, disable it.  If called from Lisp, enable the mode if
ARG is omitted or nil.
 
Show-Smartparens mode is enabled in all buffers where
`turn-on-show-smartparens-mode' would do it.
See `show-smartparens-mode' for more information on Show-Smartparens mode.
 
(fn &optional ARG)
(defalias 'show-smartparens-global-mode #[256 "\302 \303\300\304=\203\305\300!?\202\306!\307V\"\210\203.\310\311\312\"\210\310\313\314\"\210\310\315\316\"\210\202=\317\311\312\"\210\317\313\314\"\210\317\315\316\"\210\320 \211\203c\211@r\211q\210\203S\321 \210\202[    \203[\301\322!\210)A\266\202\202?\210\323\324\305\300!\203p\325\202q\326\"\210\327\330!\203\233\331\300!\210\302 \203\211\211\302 \232\203\233\332\333\334\305\300!\203\226\335\202\227\336#\266\210\337 \210\305\300!\207" [show-smartparens-global-mode show-smartparens-mode current-message set-default toggle default-value prefix-numeric-value 0 add-hook after-change-major-mode-hook show-smartparens-global-mode-enable-in-buffers find-file-hook show-smartparens-global-mode-check-buffers change-major-mode-hook show-smartparens-global-mode-cmhh remove-hook buffer-list turn-on-show-smartparens-mode -1 run-hooks show-smartparens-global-mode-hook show-smartparens-global-mode-on-hook show-smartparens-global-mode-off-hook called-interactively-p any customize-mark-as-set "" message "Show-Smartparens-Global mode %sabled%s" "en" "dis" force-mode-line-update] 7 (#$ . 323202) (byte-code "\206\301C\207" [current-prefix-arg toggle] 1)])
(defvar show-smartparens-global-mode-hook nil)
(byte-code "\301\302N\204\f\303\301\302\304#\210\305\306\307\310\300!\205\307\211%\207" [show-smartparens-global-mode-map show-smartparens-global-mode-hook variable-documentation put "Hook run after entering or leaving `show-smartparens-global-mode'.\nNo problems result if this variable is not bound.\n`add-hook' automatically binds it.  (This is true for all hook variables.)" add-minor-mode show-smartparens-global-mode nil boundp] 6)
(defvar show-smartparens-mode-set-explicitly nil nil)
(make-variable-buffer-local 'show-smartparens-mode-set-explicitly)
(defalias 'show-smartparens-mode-set-explicitly #[0 "\301\211\207" [show-smartparens-mode-set-explicitly t] 2])
(byte-code "\300\301\302\303#\210\304\305\301\"\207" [put show-smartparens-mode-set-explicitly definition-name show-smartparens-global-mode add-hook show-smartparens-mode-hook] 4)
(defvar show-smartparens-global-mode-buffers nil)
(defalias 'show-smartparens-global-mode-enable-in-buffers #[0 "\211\2056\211@\305!\203/r\211q\210    \204,\n =\204,\f\203)\304\306!\210\307 \210\202,\307 \210 )A\266\202\202\207" [show-smartparens-global-mode-buffers show-smartparens-mode-set-explicitly show-smartparens-mode-major-mode major-mode show-smartparens-mode buffer-live-p -1 turn-on-show-smartparens-mode] 4])
(put 'show-smartparens-global-mode-enable-in-buffers 'definition-name 'show-smartparens-global-mode)
(defalias 'show-smartparens-global-mode-check-buffers #[0 "\301 \210\302\303\304\305\"\207" [show-smartparens-global-mode-buffers show-smartparens-global-mode-enable-in-buffers nil remove-hook post-command-hook show-smartparens-global-mode-check-buffers] 3])
(put 'show-smartparens-global-mode-check-buffers 'definition-name 'show-smartparens-global-mode)
(defalias 'show-smartparens-global-mode-cmhh #[0 "\300\301p\"\210\302\303\304\"\207" [add-to-list show-smartparens-global-mode-buffers add-hook post-command-hook show-smartparens-global-mode-check-buffers] 3])
(put 'show-smartparens-global-mode-cmhh 'definition-name 'show-smartparens-global-mode)
#@34 Turn on `show-smartparens-mode'.
(defalias 'turn-on-show-smartparens-mode #[0 "    \235\206\302\303!?\205\304N\305=?\205\306\307!\207" [major-mode sp-ignore-modes-list derived-mode-p comint-mode mode-class special show-smartparens-mode t] 2 (#$ . 326924) nil])
#@35 Turn off `show-smartparens-mode'.
(defalias 'turn-off-show-smartparens-mode #[0 "\300\301!\207" [show-smartparens-mode -1] 2 (#$ . 327196) nil])
#@44 Highlight the enclosing pair around point.
(defalias 'sp-show-enclosing-pair #[0 "\300\207" [nil] 1 (#$ . 327347) nil])
#@93 Highlight the expression returned by the next command, preserving point position.
 
(fn ARG)
(defalias 'sp-highlight-current-sexp #[257 "\300\301\302\"\303!\304!\203\212\305!\306!\262)\202\307!\207" [read-key-sequence "" t key-binding commandp call-interactively sp-show--pair-enc-function execute-kbd-macro] 6 (#$ . 327473) "P"])
#@116 Display the show pair overlays and print the line of the
matching paren in the echo area if not visible on screen.
(defalias 'sp-show--pair-function #[0 "\205\224    \203\320\306\307 \310\311\312\313\314!\315\"\316$\216\306\317\262\320 \321!\322!\n\205*\323 \324 \204P\325 \204P\326 \204P\327\n\203B\202C!\203P\330\311!\331\"\202\307\324 \204_\325 \204_\326 \203f\332\323 !\204\207\332\n\203o\202p!\204\207\333\334 !\204\207 \f>\203\217\333\335!\203\217\330\311!!\202\307\327\n\203\230\202\231!\204\260\327\334 !\204\260 \f>\203\271\327\336!\203\271\330\311!\331\"\202\307 \205\307\337 \210\306\211\"\211#\266\204\262)\262)\207\307 \310\311\312\313\314!\340\"\316$\216\306\341\262\320 \321!\322!\n\205\360\323 \324 \204\325 \204\326 \204\327\n\203\202    !\203\330\311!\331\"\202\215\324 \204%\325 \204%\326 \203,\332\323 !\204M\332\n\2035\2026!\204M\333\334 !\204M \f>\203U\333\335!\203U\330\311!!\202\215\327\n\203^\202_!\204v\327\334 !\204v \f>\203\327\336!\203\330\311!\331\"\202\215 \205\215\337 \210\306\211\"\211#\266\204\262)\262\207" [show-smartparens-mode case-fold-search sp-show-pair-from-inside major-mode sp-navigate-consider-sgml-tags sp-show-pair-overlays nil match-data make-byte-code 0 "\301\300\302\"\207" vconcat vector [set-match-data evaporate] 3 #[513 "\304!\211\203}\211\203$\305\306\"`U\204A\305\307\"\305\310\"G\\`U\204A?\205x\305\307\"`U\204A\305\306\"\305\311\"GZ`U\205x\312\305\307\"\305\306\"\305\310\"G\305\311\"G$\210\205x\313 \206`    ?\205x\314\305\307\"\305\306\"\305\310\"G\305\311\"G$\262\202\230\203\215\315`GZG\"\210\202\223\315`G\"\210\316\211\211\207" [sp-echo-match-when-invisible cursor-in-echo-area sp-show-pair-previous-match-positions sp-show-pair-previous-point sp-get-thing plist-get :end :beg :op :cl sp-show--pair-create-overlays active-minibuffer-window sp-show--pair-echo-match sp-show--pair-create-mismatch-overlay nil] 12 "\n\n(fn MATCH &optional BACK)"] sp--get-allowed-pair-list sp--get-opening-regexp sp--get-closing-regexp sp--get-allowed-regexp sp--evil-normal-state-p sp--evil-motion-state-p sp--evil-visual-state-p sp--looking-back match-string :back sp--looking-at looking-at sp--get-stringlike-regexp "<" ">" sp-show--pair-delete-overlays [set-match-data evaporate] #[513 "\304!\211\203}\211\203$\305\306\"`U\204A\305\307\"\305\310\"G\\`U\204A?\205x\305\307\"`U\204A\305\306\"\305\311\"GZ`U\205x\312\305\307\"\305\306\"\305\310\"G\305\311\"G$\210\205x\313 \206`    ?\205x\314\305\307\"\305\306\"\305\310\"G\305\311\"G$\262\202\230\203\215\315`GZG\"\210\202\223\315`G\"\210\316\211\211\207" [sp-echo-match-when-invisible cursor-in-echo-area sp-show-pair-previous-match-positions sp-show-pair-previous-point sp-get-thing plist-get :end :beg :op :cl sp-show--pair-create-overlays active-minibuffer-window sp-show--pair-echo-match sp-show--pair-create-mismatch-overlay nil] 12 "\n\n(fn MATCH &optional BACK)"] sp-show-pair-previous-match-positions sp-show-pair-previous-point] 10 (#$ . 327820)])
#@80 Display the show pair overlays for enclosing expression.
 
(fn &optional THING)
(defalias 'sp-show--pair-enc-function #[256 "\205'\211\206\n\301 \211\205%\211\302\303\304\"\303\305\"\303\306\"G\303\307\"G$\262\262\207" [show-smartparens-mode sp-get-enclosing-sexp sp-show--pair-create-enc-overlays plist-get :beg :end :op :cl] 10 (#$ . 330944)])
#@58 Create the show pair overlays.
 
(fn START END OLEN CLEN)
(defalias 'sp-show--pair-create-overlays #[1028 "\203\301 \210\302\211\\\303\304\303%\302\\Z\303\304\303%\302Z\303\304\303%E\305\306\307#\210\310 \204;\305\306\311#\210\305\306\307#\210\305\312\313#\210\305\312\313#\210\305\312\313#\210\305\314\315#\207" [sp-show-pair-overlays sp-show--pair-delete-overlays make-overlay nil t overlay-put face sp-show-pair-match-face use-region-p sp-show-pair-match-content-face priority 1000 type show-pair] 12 (#$ . 331305)])
#@172 Print the line of the matching paren in the echo area if not
visible on screen. Needs to be called after the show-pair overlay
has been created.
 
(fn START END OLEN CLEN)
(defalias 'sp-show--pair-echo-match #[1028 "F\232\205    `\232?\205\323\211`\303!\303!\204%\202+\211?\205+\211\205\321\212\211b\210\304 \210`\305\210`{\305\nZ\211\n\\GW\203c\211\306Y\203c\307\306]G^\310\305%\210\266\311\n\312#\211    \\GW\203\212\211\306Y\203\212\307\306]G^\310\305%\210\266\313\314\305\211\315\316\206\232\317\320Q\"\203\254\321\322\323\211$\266\202\202\257\266\202\315\324\206\267\317\325Q\"\203\311\321\322\323\211$\266\205\202\314\266\205\")\266\203)\266\203\207" [sp-show-pair-previous-match-positions sp-show-pair-previous-point message-log-max pos-visible-in-window-p beginning-of-line nil 0 add-face-text-property sp-show-pair-match-face - 1 message "Matches: %s" string-match "\\(?:" "[     \n ]+" "\\)\\'" replace-match "" t "\\`\\(?:" "\\)"] 23 (#$ . 331856)])
#@67 Create the show pair enclosing overlays
 
(fn START END OLEN CLEN)
(defalias 'sp-show--pair-create-enc-overlays #[1028 "\203\301 \210\302\211\\\303\304\303%\302Z\303\304\303%B\305\306\307#\210\305\306\307#\210\305\310\311#\210\305\310\311#\210\305\312\313#\207" [sp-show-pair-enc-overlays sp-show--pair-delete-enc-overlays make-overlay nil t overlay-put face sp-show-pair-enclosing priority 1000 type show-pair-enc] 11 (#$ . 332882)])
#@51 Create the mismatch pair overlay.
 
(fn START LEN)
(defalias 'sp-show--pair-create-mismatch-overlay #[514 "\203\301 \210\302\211\\\303\304\303%\211C\305\306\307#\210\305\310\311#\210\305\312\313#\207" [sp-show-pair-overlays sp-show--pair-delete-overlays make-overlay nil t overlay-put face sp-show-pair-mismatch-face priority 1000 type show-pair] 8 (#$ . 333338)])
#@33 Remove both show pair overlays.
(defalias 'sp-show--pair-delete-overlays #[0 "\205\211\203\211@\301!\210A\266\202\202\210\302\211\207" [sp-show-pair-overlays delete-overlay nil] 4 (#$ . 333717)])
#@43 Remove both show pair enclosing overlays.
(defalias 'sp-show--pair-delete-enc-overlays #[0 "\205@\203\301@!\210A\203\301A!\210\302\211\207" [sp-show-pair-enc-overlays delete-overlay nil] 2 (#$ . 333930)])
(byte-code "\300\301\302\303\304$\210\305\301\304\"\210\300\306\307\303\304$\210\305\306\304\"\210\310\311\312\"\210\313 \210\314 \210\300\315\316\317\304$\210\305\315\304\"\210\300\320\321\317\304$\210\305\320\304\"\207" [ad-add-advice delete-backward-char (sp-delete-pair-advice nil t (advice lambda nil (save-match-data (sp-delete-pair (ad-get-arg 0))))) before nil ad-activate haskell-indentation-delete-backward-char (sp-delete-pair-advice nil t (advice lambda nil (save-match-data (sp-delete-pair (ad-get-arg 0))))) add-hook post-command-hook sp--post-command-hook-handler sp--set-base-key-bindings sp--update-override-key-bindings company--insert-candidate (sp-company--insert-candidate nil t (advice lambda nil "If `smartparens-mode' is active, we check if the completed string\nhas a pair definition.  If so, we insert the closing pair." (when smartparens-mode (sp-insert-pair)) ad-return-value)) after hippie-expand (sp-auto-complete-advice nil t (advice lambda nil (when smartparens-mode (sp-insert-pair))))] 5)
#@63 A list of vars that need to be tracked on a per-cursor basis.
(defvar sp--mc/cursor-specific-vars '(sp-wrap-point sp-wrap-mark sp-last-wrapped-region sp-pair-overlay-list sp-wrap-overlays sp-wrap-tag-overlays sp-last-operation sp-previous-point) (#$ . 335176))
(byte-code "\300\301\302\"\210\303\304!\207" [eval-after-load multiple-cursors #[0 "\211\205\211@\211    \235\203    \210\202\211    BA\266\202\202\207" [sp--mc/cursor-specific-vars mc/cursor-specific-vars] 4] provide smartparens] 3)