archive-contents
114 KB
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
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
(1
(zone-nyan .
[(0 2 2)
((esxml
(0 3 1)))
"Zone out with nyan cat" single])
(zone-matrix .
[(0 0 1)
nil "Matrix themed Zone mode" tar])
(znc .
[(0 0 2)
((cl
(2 2))
(erc
(5 3)))
"ZNC + ERC" single])
(zjl-hl .
[(20121028 1901)
((highlight
(21 0))
(region-list-edit
(20100530 808)))
"Highlight variable and function call and others in c/emacs, make life easy." single])
(zencoding-mode .
[(0 5 1)
nil "Unfold CSS-selector-like expressions to markup" single])
(zenburn-theme .
[(2 1)
nil "A low contrast color theme for Emacs." single])
(zenburn .
[(0 1)
nil "A low contrast colour theme for Emacs" single])
(zen-mode .
[(20120627)
nil "remove/restore Emacs distractions quickly" tar])
(zen-and-art-theme .
[(1 0 1)
nil "zen and art color theme for GNU Emacs 24" single])
(zeitgeist .
[(0 1)
nil "integrates Emacs with Zeitgeist." single])
(zeal-at-point .
[(0 0 3)
nil "Search the word at point with Zeal" single])
(yoshi-theme .
[(6 0 0)
nil "Theme named after my cat" single])
(yesql-ghosts .
[(0 1 0)
((s
(1 9 0))
(dash
(2 10 0))
(cider
(0 8 0)))
"Display ghostly yesql defqueries inline" single])
(yasnippet-bundle .
[(0 6 1)
nil "Yet another snippet extension (Auto compiled bundle)" single])
(yasnippet .
[(0 6 1)
nil "Yasnippet template engine" tar])
(yascroll .
[(0 2 0)
nil "Yet Another Scroll Bar Mode" single])
(yas-jit .
[(0 8 3)
nil "Loads Yasnippets on demand (makes start up faster)" single])
(yari .
[(0 7)
nil "Yet Another RI interface for Emacs" single])
(yaoddmuse .
[(0 1 1)
nil "Yet another oddmuse for Emacs" single])
(yaml-mode .
[(0 0 9)
nil "Major mode for editing YAML files" single])
(yagist .
[(0 8 6)
((json
(1 2 0)))
"Yet Another Emacs integration for gist.github.com" single])
(xmlgen .
[(0 4)
nil "A DSL for generating XML." single])
(xml-rpc .
[(1 6 8)
nil "An elisp implementation of clientside XML-RPC" single])
(xml-gen .
[(0 4)
nil "A DSL for generating XML." single])
(xlicense .
[(1 1)
nil "Insert pre-defined license text" tar])
(xkcd .
[(1 0)
((json
(1 3)))
"View xkcd from Emacs" single])
(xbm-life .
[(0 1 3)
nil "A XBM version of Conway's Game of Life" single])
(wxwidgets-help .
[(0 0 3)
nil "Look up wxWidgets API by using local html manual." tar])
(wsd-mode .
[(0 5 0)
nil "Emacs major-mode for www.websequencediagrams.com" tar])
(ws-trim .
[(1 4)
nil "Tools and minor mode to trim whitespace on text lines" single])
(writegood-mode .
[(20130406 2316)
nil "Polish up poor writing on the fly" single])
(wrap-region .
[(0 7 1)
nil "Wrap text with punctation or tag" single])
(world-time-mode .
[(0 0 6)
nil "show whole days of world-time diffs" single])
(workspaces .
[(0 1)
nil "Workspaces for Emacsen" single])
(workgroups .
[(0 2 0)
nil "workgroups for windows (for Emacs)" single])
(wonderland .
[(0 1 1)
((dash
(2 0 0))
(dash-functional
(1 0 0))
(multi
(2 0 0))
(emacs
(24)))
"declarative configuration for Emacsen" single])
(with-namespace .
[(1 1)
nil "Poor-man's namespaces for elisp" single])
(with-editor .
[(2 4 1)
((emacs
(24 4))
(async
(1 5))
(dash
(2 12 1)))
"Use the Emacsclient as $EDITOR" tar])
(wisp-mode .
[(0 2 3)
nil "Tools for wisp: the Whitespace-to-Lisp preprocessor" single])
(wisp .
[(0 1 4)
nil "Tools for wisp: the Whitespace-to-Lisp preprocessor" single])
(winpoint-ignore-dired .
[(1 1)
((winpoint
(1 0)))
"Have winpoint ignore dired-mode buffers" single])
(winpoint .
[(1 4)
nil "Remember buffer positions per-window, not per buffer" single])
(winner-mode-enable .
[(0 0 5)
nil "Enables winner mode if its available" tar])
(window-number .
[(1 0 3)
nil "Select windows by numbers." single])
(window-margin .
[(0 1)
nil "automatic margins for visual-line-mode wrapping" single])
(window-end-visible .
[(0 1 0)
nil "Find the last visible point in a window" single])
(win-switch .
[(1 0 8)
nil "fast, dynamic bindings for window-switching/resizing" single])
(wikidoc .
[(0 9)
((s\.el
(1 9 0)))
"use elisp doc strings to make other documentation" single])
(wiki-nav .
[(1 0 2)
((button-lock
(1 0 2))
(nav-flash
(1 0 0)))
"Simple file navigation using [[WikiStrings]]" single])
(whitespace-cleanup-mode .
[(0 8)
nil "Intelligently call whitespace-cleanup on save" single])
(wgrep-helm .
[(0 1 0)
((wgrep
(2 1 1)))
"Writable helm-grep-mode buffer and apply the changes to files" single])
(wgrep-ack .
[(0 1 1)
((wgrep
(2 1 1)))
"Writable ack-and-a-half buffer and apply the changes to files" single])
(wgrep .
[(2 1 3)
nil "Writable grep buffer and apply the changes to files" single])
(wget .
[(1 94)
nil "Emacs-wget is an interface program of GNU wget on Emacs." tar])
(weechat .
[(0 3 1)
((s
(1 3 1))
(cl-lib
(0 2))
(emacs
(24))
(tracking
(1 2)))
"Chat via WeeChat's relay protocol in Emacs" tar])
(wedge-ws .
[(0 1 2)
nil "Wedge whitespace between columns in text" tar])
(websocket .
[(1 0)
nil "Emacs WebSocket client and server" single])
(web-mode .
[(14 0 0)
nil "major mode for editing web templates" single])
(web .
[(0 5 2)
((dash
(2 9 0))
(s
(1 5 0)))
"useful HTTP client" single])
(weather-metno .
[(20140909)
((emacs
(24))
(cl-lib
(0 3)))
"Weather data from met.no in Emacs" tar])
(weather .
[(2012 3 27 2)
nil "Get weather reports via worldweatheronline.com" single])
(wcheck-mode .
[(2014 6 21)
nil "General interface for text checkers" tar])
(wc-mode .
[(1 3)
nil "Running word count with goals (minor mode)" single])
(watch-buffer .
[(1 0 1)
nil "run a shell command when saving a buffer" single])
(waher-theme .
[(20130917 7)
((emacs
(24 1)))
"Emacs 24 theme based on waher for st2 by dduckster" single])
(wacspace .
[(0 4 2)
((dash
(1 2 0))
(cl-lib
(0 2)))
"The WACky WorkSPACE manager for emACS" tar])
(w32-browser .
[(21 0)
nil "Run Windows application associated with a file." single])
(volatile-highlights .
[(1 10)
nil "Minor mode for visual feedback on some operations." single])
(vline .
[(1 10)
nil "show vertical line (column highlighting) mode." single])
(visible-color-code .
[(0 0 1)
nil "color code strings in current buffer, this elisp show you one as real color." single])
(virtualenv .
[(1 2)
nil "Virtualenv for Python" single])
(viper-in-more-modes .
[(0 1 3)
nil "vi-like keybindings for various Emacs modes" single])
(vimpulse .
[(0 5)
nil "emulates Vim's most useful features" single])
(vimgolf .
[(0 9 2)
nil "VimGolf interface for the One True Editor" single])
(vertica .
[(0 1 0)
((sql
(3 0)))
"Vertica SQL mode extension" single])
(vector-utils .
[(0 1 2)
nil "Vector-manipulation utility functions" single])
(vcard .
[(0 1)
nil "vcard parsing and display routines" single])
(vc-tfs .
[(0 1 3)
nil "Support for TFS version control system" single])
(vc-darcs .
[(1 12)
nil "a VC backend for darcs" single])
(vala-mode .
[(0 1)
nil "Vala mode derived mode" single])
(uzumaki .
[(0 1)
((cl-lib
(0 5)))
"A simple buffer cycler" single])
(uuid .
[(0 0 3)
nil "UUID's for EmacsLisp" single])
(unicode-whitespace .
[(0 2 4)
((ucs-utils
(0 7 6))
(persistent-soft
(0 8 8))
(pcache
(0 2 3)))
"teach whitespace-mode about fancy characters" single])
(unicode-progress-reporter .
[(0 5 4)
((emacs
(24 1 0))
(ucs-utils
(0 7 6))
(persistent-soft
(0 8 8))
(pcache
(0 2 3)))
"Progress-reporter with fancy characters" single])
(unicode-fonts .
[(0 3 8)
((font-utils
(0 7 0))
(ucs-utils
(0 7 6))
(persistent-soft
(0 8 8))
(pcache
(0 2 3)))
"Configure Unicode fonts" single])
(unicode-enbox .
[(0 1 4)
((string-utils
(0 3 2))
(ucs-utils
(0 7 6))
(persistent-soft
(0 8 8))
(pcache
(0 2 3)))
"Surround a string with box-drawing characters" single])
(unfill .
[(0 1)
nil "The inverse of fill-paragraph and fill-region" single])
(undo-tree .
[(0 3 1)
nil "Treat undo history as a tree" single])
(unbound .
[(0 1)
nil "find convenient unbound keystrokes" single])
(ujelly-theme .
[(1 0 35)
nil "Ujelly theme for GNU Emacs 24 (deftheme)" single])
(ucs-utils .
[(0 7 10)
((persistent-soft
(0 8 8))
(pcache
(0 2 3))
(list-utils
(0 4 2)))
"Utilities for Unicode characters" single])
(uci-mode .
[(1 0 0)
nil "Major mode for UCI configuration files" single])
(typopunct .
[(1 0)
nil "Automatic typographical punctuation marks" single])
(typo .
[(1 1)
nil "Minor mode for typographic editing" single])
(typing-practice .
[(0 1)
nil "Typing practice" single])
(typing .
[(1 1 4)
nil "A game for fast typers, inspired by The Typing Of The Dead." single])
(typescript .
[(0 1 1)
nil "Major mode for editing typescript" single])
(twittering-mode .
[(3 0 1)
nil "Major mode for Twitter" single])
(twilight-theme .
[(1 0 0)
nil "Twilight theme for GNU Emacs 24 (deftheme)" single])
(tup-mode .
[(1 2)
nil "Major mode for editing files for Tup" single])
(tumblesocks .
[(0 0 7)
((htmlize
(1 39))
(oauth
(1 0 3))
(markdown-mode
(1 8 1)))
"An Emacs tumblr client." tar])
(tumble .
[(1 5)
nil "an Tumblr mode for Emacs" single])
(tuareg .
[(2 0 8)
((caml
(3 12 0 1)))
"OCaml mode for Emacs" tar])
(ttrss .
[(1 7 5)
((emacs
(23 1)))
"Tiny Tiny RSS elisp bindings" single])
(ttl-mode .
[(0 1)
nil "mode for Turtle(RDF)" single])
(tt-mode .
[(20121117 2045)
nil "Emacs major mode for editing Template Toolkit files." tar])
(tsql .
[(1 0)
nil "customizes sql.el for T-SQL" single])
(try .
[(0 0 1)
((emacs
(24)))
"Try out Emacs packages." single])
(truthy .
[(0 2 8)
((list-utils
(0 4 2)))
"Test the content of a value" single])
(tronesque-theme .
[(1 5)
nil "Color Theme based on Tron universe." single])
(troncle .
[(0 1 2)
((cider
(0 5 0)))
"Emacs convenience functions for tracing clojure code" single])
(tron-theme .
[(12)
nil "A theme loosely based on Tron: Legacy colors" single])
(transmission .
[(0 11 1)
((emacs
(24 4))
(let-alist
(1 0 5)))
"Interface to a Transmission session" single])
(tracking .
[(1 6)
((shorten
(0 3)))
"Buffer modification tracking" single])
(toxi-theme .
[(0 1 0)
nil "REQUIRES EMACS 24" single])
(tox .
[(20130819 1127)
nil "Launch current python test with tox." single])
(tommyh-theme .
[(1 2)
nil "A bright, bold-colored theme for emacs." single])
(toml-mode .
[(0 1 3)
nil "Mojor mode for editing TOML files" single])
(toggle-test .
[(1 0 2)
nil "Toggle between source and test files in various programming languages" single])
(todotxt .
[(0 2 3)
nil "A major mode for editing todo.txt files" single])
(tintin-mode .
[(1 0 0)
nil "Mayor mode for editing tintin++ scripts" single])
(timestamper .
[(0 1 0)
nil "A minor mode for easy timelogging" single])
(tidy .
[(2 12)
nil "Interface to the HTML Tidy program" single])
(thumb-through .
[(0 3)
nil "Plain text reader of HTML documents" single])
(thread-dump .
[(1 0)
nil "java thread dump viewer" single])
(thesaurus .
[(2012 4 7)
nil "replace a word with a synonym looked up in a web service." single])
(theme-looper .
[(20170330 1829)
((cl-lib
(0 5)))
"Loop thru the available color-themes" single])
(theme-changer .
[(2 1 0)
nil "Sunrise/Sunset Theme Changer for Emacs" single])
(textmate-to-yas .
[(0 21)
nil "Import Textmate macros into yasnippet syntax" single])
(textmate .
[(5)
nil "TextMate minor mode for Emacs" single])
(text-language .
[(0 20121008)
nil "tracking, setting, guessing language of text" single])
(tex-smart-umlauts .
[(1 2 0)
nil "Smart umlaut conversion for TeX." single])
(test-case-mode .
[(0 1 9)
nil "unit test front-end" single])
(template .
[(0 1 0)
((request
(20140316 417)))
"create project templates in Emacs easily" single])
(telepathy .
[(0 1)
nil "Access Telepathy from Emacs" single])
(tdd-status-mode-line .
[(0 1 2)
nil "TDD status on the mode-line" single])
(tdd .
[(1 0)
nil "recompile on save and indicate success in the mode line" single])
(tbemail .
[(0 2)
nil "Provide syntax highlighting for email editing via" single])
(tango-2-theme .
[(1 0 0)
nil "Tango 2 color theme for GNU Emacs 24" single])
(tango-2 .
[(1 0 0)
nil "Tango 2 color theme for GNU Emacs 24" single])
(tagedit .
[(1 4 0)
((s
(1 3 1))
(dash
(1 0 3)))
"Some paredit-like features for html-mode" single])
(tabulated-list .
[(0)
nil "generic major mode for tabulated lists." single])
(tabkey2 .
[(1 40)
nil "Use second tab key pressed for what you want" single])
(tabbar-ruler .
[(0 40)
((tabbar
(2 0 1)))
"Pretty tabbar, autohide, use both tabbar/ruler" single])
(systemtap-mode .
[(0 2)
nil "A mode for SystemTap" single])
(systemd .
[(1 4 1)
nil "Major mode for editing systemd units" tar])
(syslog-mode .
[(2 2)
((hide-lines
(20130623)))
"Major-mode for viewing log files" single])
(syntactic-sugar .
[(0 9 4)
nil "Effect-free forms such as if/then/else" single])
(synosaurus .
[(0 1 0)
((cl-lib
(0 5)))
"An extensible thesaurus supporting lookup and substitution." tar])
(synonyms .
[(1 0)
nil "Look up synonyms for a word or phrase in a thesaurus." single])
(symbols-mode .
[(0 3)
nil "List symbols of object files" single])
(sws-mode .
[(0 1)
nil "SWS mode" single])
(switch-window .
[(0 9)
nil "A *visual* way to choose a window to switch to" single])
(swarmhacker .
[(0 0 1)
nil "simple swarm chat" single])
(swank-cdt .
[(1 0 1)
nil "swank-cdt helper functions" single])
(surround .
[(0 1)
nil "emulate surround.vim from Vim" single])
(supergenpass .
[(0 1)
nil "SuperGenPass for Emacs" single])
(suomalainen-kalenteri .
[(2013 4 18)
nil "Finnish national and Christian holidays for calendar" tar])
(sumatra-forward .
[(2008 10 8)
nil "Provides Sumatra Forward search" single])
(sudo-edit .
[(0 0 1)
nil "Utilities for opening files with sudo" single])
(sudden-death .
[(0 1)
nil "Totsuzen-no-Shi" single])
(subshell-proc .
[(1 0 0)
nil "Functions for working with comints" single])
(sublime .
[(0 0 7)
((coffee-mode
(0 3 0))
(find-file-in-project
(3 0))
(haml-mode
(3 0 14))
(ido-ubiquitous
(1 0))
(less-css-mode
(0 6))
(magit
(1 1 1))
(markdown-mode
(1 8 1))
(monokai-theme
(0 0 6))
(paredit
(22))
(sass-mode
(3 0 14))
(smex
(1 1 2))
(yaml-mode
(0 0 7))
(yasnippet
(0 6 1)))
"REQUIRES EMACS 24 - Sublime Text 2 Emulation for Emacs" tar])
(subatomic-theme .
[(1 6 0)
nil "Low contrast bluish color theme" single])
(stylus-mode .
[(0 1)
nil "Major mode for editing stylus templates." single])
(stripe-buffer .
[(0 2 2)
((cl-lib
(1 0)))
"Use a different background for even and odd lines" single])
(string-utils .
[(0 3 2)
((list-utils
(0 4 2)))
"String-manipulation utilities" single])
(string-edit .
[(0 1 0)
((dash
(1 2 0)))
"Avoid escape nightmares by editing string in separate buffer" single])
(steady-theme .
[(0 1 0)
nil "A steady theme for Emacs" single])
(starter-kit-ruby .
[(2 0 3)
((inf-ruby
(2 2 3))
(starter-kit
(2 0 1)))
"Saner defaults and goodies for Ruby" single])
(starter-kit-lisp .
[(2 0 3)
((starter-kit
(2 0 2))
(elisp-slime-nav
(0 1)))
"Saner defaults and goodies for lisp languages" single])
(starter-kit-js .
[(2 0 1)
((starter-kit
(2 0 1)))
"Saner defaults and goodies for Javascript" single])
(starter-kit-eshell .
[(2 0 3)
nil "Saner defaults and goodies: eshell tweaks" single])
(starter-kit-bindings .
[(2 0 2)
((starter-kit
(2 0 2)))
"Saner defaults and goodies: bindings" single])
(starter-kit .
[(2 0 3)
((paredit
(22))
(idle-highlight-mode
(1 1 1))
(find-file-in-project
(3 0))
(smex
(1 1 1))
(ido-ubiquitous
(0 3))
(magit
(0 8 1)))
"Saner defaults and goodies." tar])
(ssh-file-modes .
[(1 20150626)
nil "major modes for ssh authorized_keys and known_hosts files" single])
(ssh .
[(1 2)
nil "Support for remote logins using ssh." single])
(sr-speedbar .
[(0 1 8)
nil "Same frame speedbar" single])
(sql-indent .
[(1 10)
nil "indentation of SQL statements" single])
(sprintly-mode .
[(0 0 4)
((furl
(0 0 2)))
"Major mode for dealing with sprint.ly" single])
(spotify .
[(0 3)
nil "Control the spotify application from emacs" single])
(speck .
[(2010 5 25)
nil "minor mode for spell checking" single])
(sparql-mode .
[(0 8 4)
nil "Edit and interactively evaluate SPARQL queries." tar])
(sparkline .
[(1 0 2)
((cl-lib
(0 3)))
"Make sparkline images from a list of numbers" single])
(sourcetalk .
[(1 2 0)
((request
(0 2 0)))
"SourceTalk (http://sourcetalk.net) plugin for Emacs" single])
(soothe-theme .
[(0 3 16)
((emacs
(24 1)))
"a dark colorful theme for Emacs24." single])
(solarized-theme .
[(1 0 0)
nil "The Solarized color theme, ported to Emacs." tar])
(sokoban .
[(1 23)
nil "Play the Sokoban game in emacs" single])
(snakehump .
[(0 1 1)
nil "Convert between compound word conventions" tar])
(smtpmail-multi .
[(0 6)
nil "Use different smtp servers for sending mail" single])
(smooth-scrolling .
[(1 0 1)
nil "Make emacs scroll smoothly" single])
(smooth-scroll .
[(1 2)
nil "Minor mode for smooth scrolling and in-place scrolling." single])
(sml-modeline .
[(0 5)
nil "Show position in a scrollbar like way in mode-line" single])
(smex .
[(3 0)
nil "M-x interface with Ido-style fuzzy matching." single])
(smartrep .
[(0 0 3)
nil "Support sequential operation which omitted prefix keys." single])
(smartparens .
[(1 4)
((dash
(1 1 0)))
"Automatic insertion, wrapping and paredit-like navigation with user defined pairs." tar])
(smarter-compile .
[(2012 4 9)
nil "a smarter wrapper for `compile'" single])
(smart-window .
[(0 6)
nil "vim-like window controlling plugin" single])
(smart-whitespace-comment-fixup .
[(1 1)
nil "Enables advice around yanking/killing lines that auto-indents and formats properly" single])
(smart-tab .
[(0 3)
nil "Intelligent tab completion and indentation." single])
(smart-operator .
[(2 0 20110812)
nil "Insert operators with surrounding spaces smartly" single])
(smart-forward .
[(1 0 0)
((expand-region
(0 8 0)))
"Semantic navigatioin" single])
(slough .
[(0 1)
((nrepl
(0 1 7))
(smartparens
(1 4 3)))
"package for slough - this is for a secret TW thing" single])
(slime-scratch .
[(1 0 0)
((slime
(20100404)))
"Imitate Emacs' *scratch* buffer" single])
(slime-ritz .
[(0 6 0)
nil "slime extensions for ritz" single])
(slime-repl .
[(20100404)
((slime
(20100404)))
"Read-Eval-Print Loop written in Emacs Lisp" single])
(slime-js .
[(0 0 1)
((slime-repl
(20100404))
(slime
(20100404)))
"Slime extension for swank-js." single])
(slime-fuzzy .
[(20100404)
((slime
(20100404)))
"Fuzzy symbol completion for Slime" single])
(slime-clj .
[(0 1 6)
nil "slime extensions for swank-clj" single])
(slime .
[(20100404 1)
nil "Superior Lisp Interaction Mode for Emacs" single])
(slim-mode .
[(1 1)
nil "Major mode for editing Slim files" single])
(slamhound .
[(2 0 0)
nil "Rip Clojure namespaces apart and rebuild them." single])
(skinny .
[(0 0 6)
((elnode
(0 9 9 6 1))
(creole
(0 8 17)))
"a blog engine with elnode" single])
(skewer-mode .
[(1 7 0)
((simple-httpd
(1 4 0))
(js2-mode
(20090723))
(emacs
(24)))
"live browser JavaScript, CSS, and HTML interaction" tar])
(skewer-less .
[(0 2)
((skewer-mode
(1 5 3)))
"Skewer support for live LESS stylesheet updates" single])
(simplezen .
[(0 1 1)
nil "A simple subset of zencoding-mode for Emacs." single])
(simpleclip .
[(1 0 0)
nil "Simplified access to the system clipboard" single])
(simple-mode-line .
[(0 3)
nil "Simplified Mode Line for Emacs 24" single])
(simple-httpd .
[(1 5 0)
((cl-lib
(0 3)))
"pure elisp HTTP server" single])
(simp .
[(0 2 0)
nil "Simple project definition, chiefly for project file finding and grepping." tar])
(show-marks .
[(0 4)
((fm
(1 0)))
"Navigate and visualize the mark-ring" single])
(show-css .
[(1 1)
nil "Show the css of the html attribute the cursor is on" single])
(shorten .
[(1 6)
nil "component-wise string shortener" single])
(shoes-off .
[(0 1 8)
((kv
(0 0 5))
(anaphora
(0 0 4)))
"irc bouncer" single])
(shell-switcher .
[(0 1 5 1)
nil "Easily switch between shell buffers, like with alt+tab." tar])
(shell-pop .
[(0 3)
nil "helps you to use shell easily on Emacs. Only one key action to work." single])
(shell-here .
[(1 3)
nil "Open a shell relative to the working directory" single])
(shadchen .
[(1 4)
nil "pattern matching for elisp" single])
(shackle .
[(0 9 0)
((cl-lib
(0 5)))
"Enforce rules for popups" single])
(setup-cygwin .
[(21 0)
nil "Set up Emacs for using Cygwin" single])
(session-manager .
[(0 5)
nil "Support for the Gnome Session Manager" single])
(session .
[(2 2 1)
nil "use variables, registers and buffer places across sessions" single])
(sequences .
[(0 1 0)
((emacs
(24)))
"Ports of some Clojure sequence functions." single])
(sequence .
[(0 0 1)
nil "makes sequences of numbers" single])
(sentence-highlight .
[(0 1)
nil "highlight the current sentence" single])
(sensitive .
[(1 0 1)
((emacs
(24))
(sequences
(0 1 0)))
"A dead simple way to load sensitive information" single])
(seethru .
[(0 3)
((shadchen
(1 4)))
"Easily change Emacs' transparency" single])
(sedated .
[(1 0)
nil "A few extremely simple sed functions for familiar text manipulation" single])
(seclusion-mode .
[(1 1 1)
nil "Edit in seclusion. A Dark Room mode." single])
(sea-before-storm-theme .
[(0 4 20141114)
nil "Sea Before Storm color theme for Emacs 24" single])
(scss-mode .
[(0 5 0)
nil "Major mode for editing SCSS files" single])
(scrolloff .
[(1 0)
nil "This mode ofers vim-like scrolloff function" single])
(screen-lines .
[(0 55)
nil "a minor mode for screen-line-based point motion" single])
(scratch-pop .
[(1 0 0)
nil "popup scratch" single])
(scratch-persist .
[(1 1)
nil "persist the scratch buffer across sessions" single])
(scratch-palette .
[(1 0 1)
nil "add scratch notes for each file" single])
(scratch .
[(20110708)
nil "Mode-specific scratch buffers" single])
(scpaste .
[(0 6 5)
((htmlize
(1 39)))
"Paste to the web via scp." single])
(scheme-here .
[(12 8 2008)
nil "cmuscheme extension for multiple inferior processes" single])
(scala-mode .
[(0 0 2)
nil "Scala major mode" tar])
(say-what-im-doing .
[(0 2)
nil "dictate what you're doing with text to speech" single])
(sawfish .
[(1 32)
nil "Sawfish mode." single])
(save-visited-files .
[(1 2)
nil "save opened files across sessions" single])
(save-packages .
[(0 20121012)
nil "save and restore installed packages" single])
(sauron .
[(0 8)
nil "Track (erc/org/dbus/...) events and react to them." tar])
(sass-mode .
[(3 0 16)
((haml-mode
(3 0 15)))
"Major mode for editing Sass files" single])
(sackspace .
[(0 8 2)
nil "A better backspace" single])
(s-buffer .
[(0 0 4)
((s
(1 6 0))
(noflet
(0 0 3)))
"s operations for buffers" single])
(s .
[(1 10 0)
nil "The long lost Emacs string manipulation library." single])
(rw-language-and-country-codes .
[(0 1)
nil "Language & Country Codes" single])
(rw-ispell .
[(0 1)
nil "additional functions for ispell.el" single])
(rw-hunspell .
[(0 2)
nil "special functions for Hunspell in ispell.el" single])
(rvm .
[(1 4 0)
nil "Emacs integration for rvm" single])
(rust-mode .
[(0 1 0)
((cm-mode
(0 1 0)))
"A major emacs mode for editing Rust source code" single])
(rudel .
[(0 3)
((eieio
(1 4)))
"A collaborative editing framework for Emacs" tar])
(rubyinterpol .
[(0 1)
nil "Ruby-like String Interpolation for format" single])
(ruby-tools .
[(0 1 0)
nil "Collection of handy functions for ruby-mode" single])
(ruby-test-mode .
[(1 7)
((ruby-mode
(1 0)))
"Minor mode for Behaviour and Test Driven" single])
(ruby-mode .
[(1 1)
nil "ruby-mode package" tar])
(ruby-hash-syntax .
[(0 3)
nil "Toggle ruby hash syntax between classic and 1.9 styles" single])
(ruby-end .
[(0 3 1)
nil "Automatic insertion of end blocks for Ruby" single])
(ruby-compilation .
[(2 10)
((inf-ruby
(2 2 1)))
"run a ruby process in a compilation buffer" single])
(ruby-block .
[(0 0 11)
nil "highlight matching block" single])
(rubocop .
[(0 3)
((dash
(1 0 0)))
"An Emacs interface for RuboCop" single])
(rspec-mode .
[(1 10)
nil "Enhance ruby-mode for RSpec" tar])
(roy-mode .
[(0 1 0)
nil "Roy major mode" single])
(robe .
[(0 7 7)
((inf-ruby
(2 3 0)))
"Code navigation, documentation lookup and completion for Ruby" tar])
(rings .
[(1 0 1)
nil "Buffer rings. Like tabs, but better." single])
(rinari .
[(2 10)
((ruby-mode
(1 0))
(inf-ruby
(2 2 1))
(ruby-compilation
(0 8))
(jump
(2 0)))
"Rinari Is Not A Rails IDE" single])
(revive .
[(2 19)
nil "Resume Emacs." single])
(requirejs-mode .
[(1 1)
nil "Improved AMD module management" single])
(request-deferred .
[(0 2 0)
((deferred
(0 3 1))
(request
(0 2 0)))
"Wrap request.el by deferred" single])
(request .
[(0 2 0)
nil "Compatible layer for URL request in Emacs" single])
(repository-root .
[(1 0 4)
nil "deduce the repository root directory for a given file" single])
(remember-themes .
[(20160318 1351)
((emacs
(24 1)))
"Remembers the last theme in use and re-loads for the next session." single])
(remember-theme .
[(20140122 1500)
nil "Remembers the last theme in use and re-loads for the next session." single])
(relax .
[(0 2)
((json
(1 2)))
"For browsing and interacting with CouchDB" single])
(region-list-edit .
[(20100530 808)
nil "Add/delete a region into/from a region list, such as ((4 . 7) (11 . 15) (17 . 17) (20 . 25))." single])
(region-bindings-mode .
[(0 1)
nil "Enable custom bindings when mark is active." single])
(regex-tool .
[(1 2)
nil "A regular expression evaluation tool for programmers" single])
(refheap .
[(0 0 6)
((json
(1 2)))
"A library for pasting to https://refheap.com" single])
(recursive-narrow .
[(20140811 1546)
nil "narrow-to-region that operates recursively" single])
(rect-mark .
[(1 4)
nil "Mark a rectangle of text with highlighting." single])
(real-auto-save .
[(0 3)
nil "enable real auto save" single])
(rcirc-ucomplete .
[(1 0 1)
nil "Unambiguous non-cycling completion for rcirc" single])
(rcirc-ssh .
[(0 0 7)
((kv
(0 0 3)))
"do irc over ssh sessions" single])
(rcirc-robots .
[(0 0 7)
((kv
(0 0 8))
(anaphora
(0 0 5)))
"robots based on rcirc irc" single])
(rcirc-notify .
[(1 0 0)
nil "libnotify popups" single])
(rcirc-color .
[(0 2)
nil "color nicks" single])
(rbenv .
[(0 0 3)
nil "Emacs integration for rbenv" single])
(rainbow-delimiters .
[(1 3 21)
nil "Highlight nested parens, brackets, braces a different color at each depth." single])
(r5rs .
[(1 0)
nil "Browse documentation from the R5RS Revised5 Report" single])
(r-autoyas .
[(0 28)
nil "Provides automatically created yasnippets for R function argument lists." single])
(quickrun .
[(1 8 4)
nil "Run commands quickly" single])
(quack .
[(0 42)
nil "enhanced support for editing and running Scheme code" single])
(qsimpleq-theme .
[(0 1 3)
nil "Based on solarized color theme for Emacs." single])
(pyvirtualenv .
[(1 1)
nil "Python Pyvirtualenv support" single])
(pyvenv .
[(1 7)
nil "Python virtual environment interface" single])
(python-pylint .
[(1 1)
nil "minor mode for running `pylint'" single])
(python-pep8 .
[(1 1)
nil "minor mode for running `pep8'" single])
(python-mode .
[(6 1 3)
nil "An Emacs mode for editing Python code" tar])
(python-django .
[(0 1)
nil "A Jazzy package for managing Django projects" single])
(python .
[(20120402)
nil "Python's flying circus support for Emacs" single])
(pytest .
[(0 2 1)
nil "Easy Python test running in Emacs" single])
(pysmell .
[(0 7 2)
nil "Complete python code using heuristic static analysis" single])
(pymacs .
[(0 25)
nil "Interface between Emacs Lisp and Python" single])
(pylint .
[(1 0)
nil "run the python pylint checker putting hits in a grep buffer" single])
(pyflakes .
[(1 0)
nil "run the python pyflakes checker putting hits in a grep buffer" single])
(pyde .
[(0 6)
((pymacs
(0 25))
(auto-complete
(1 4))
(yasnippet
(0 8))
(fuzzy
(0 1))
(pyvirtualenv
(1 0)))
"Python Development Environment" single])
(pycomplete .
[(1 0)
nil "Complete symbols at point using Pymacs." single])
(py-import-check .
[(0 2)
nil "Finds the unused python imports using importchecker" single])
(purple-haze-theme .
[(20130930 36)
((emacs
(24 0)))
"an overtly purple color theme for Emacs24." single])
(puppet-mode .
[(0 3)
((emacs
(24 1))
(cl-lib
(0 5))
(pkg-info
(0 4)))
"Major mode for Puppet manifests" single])
(punpun-theme .
[(0 0 1)
nil "A bleak theme" tar])
(psvn .
[(1 1 1)
nil "Subversion interface for emacs" single])
(psgml .
[(1 4 1)
nil "Lennart Staflin's Psgml package, with Elisp syntax and sgml-validate fixed for Emacsen >=24." tar])
(psci .
[(0 0 6)
((purescript-mode
(13 10))
(dash
(2 9 0))
(s
(1 9 0))
(f
(0 17 1))
(deferred
(0 3 2)))
"Major mode for purescript repl psci" single])
(ps-ccrypt .
[(1 10)
nil "reading/writing/loading encrypted files" tar])
(proxy-mode .
[(0 9)
nil "Provides proxy minor mode." single])
(protobuf-mode .
[(0 3)
nil "major mode for editing protocol buffers." single])
(prolog .
[(1 22)
nil "major mode for editing and running Prolog (and Mercury) code" single])
(projectile .
[(0 10 0)
((s
(1 6 0))
(dash
(1 5 0))
(pkg-info
(0 4)))
"Manage and navigate projects in Emacs easily" single])
(project-explorer .
[(0 13)
((cl-lib
(0 3))
(es-lib
(0 3))
(es-windows
(0 1))
(emacs
(24)))
"A project explorer sidebar" single])
(project .
[(1 0)
nil "Keep track of the current project" single])
(processing-snippets .
[(1 0 0)
((yasnippet
(0 8 0)))
"Snippets for the Processing major mode" tar])
(processing-mode .
[(1 2 1)
nil "Major mode for Processing 2.0" single])
(proc-net .
[(0 0 1)
nil "network process tools" single])
(pretty-mode-plus .
[(1 2)
nil "Redisplay parts of the buffer as pretty symbols." tar])
(pretty-lambdada .
[(22 0)
nil "Show the word `lambda' as the Greek letter." single])
(pp-c-l .
[(1 0)
nil "Display Control-l characters in a pretty way" single])
(powershell .
[(0 2 1)
nil "run powershell as an inferior shell in emacs" single])
(pov-mode .
[(3 3)
nil "Major mode for editing POV-Ray scene files." tar])
(pos-tip .
[(0 4 5)
nil "Show tooltip at point" single])
(popwin .
[(0 4)
nil "Popup Window Manager." single])
(popup .
[(0 5)
nil "Visual Popup User Interface" single])
(pony-mode .
[(0 2)
nil "Minor mode for working with Django Projects" tar])
(pointback .
[(0 2)
nil "Restore window points when returning to buffers" single])
(pod-mode .
[(20121117 2120)
nil "Major mode for editing .pod-files." tar])
(po-elscreen .
[(1 4 6)
nil "Screen for Emacsen(this is not original. original is http://www.morishima.net/~naoto/elscreen-en/?lang=en)" single])
(pkg-info-dummy-package .
[(3 4 2 1)
nil "pkg-info: Dummy package for unit tests" single])
(pkg-info .
[(0 6)
((epl
(0 8)))
"Information about packages" single])
(pivotal-tracker .
[(1 2 0)
nil "Interact with Pivotal Tracker through its API" single])
(pinboard-api .
[(0 1)
nil "Rudimentary http://pinboard.in integration" single])
(pinboard .
[(0 0 1)
nil "get stuff from pinboard" single])
(picpocket .
[(38)
((emacs
(24 4)))
"Image viewer" single])
(pickup .
[(0 0 3)
nil "pickup file." single])
(php-mode .
[(1 5 0)
nil "major mode for editing PHP code" single])
(php-extras .
[(2 2 0 20140405)
((php-mode
(1 5 0)))
"Extra features for `php-mode'" tar])
(php-completion .
[(0 3)
nil "complete everything PHP with Anything.el" single])
(phi-search .
[(1 1 0)
nil "inferior isearch compatible with \"multiple-cursors\"" single])
(phantomjs .
[(0 0 11)
nil "Control phantomjs from Emacs " tar])
(pg .
[(0 12)
nil "Emacs Lisp interface to the PostgreSQL RDBMS" single])
(perspective .
[(1 12)
((cl-lib
(0 5)))
"switch between named \"perspectives\" of the editor" single])
(persistent-soft .
[(0 8 8)
((pcache
(0 2 3))
(list-utils
(0 4 2)))
"Persistent storage, returning nil on failure" single])
(perlcritic .
[(1 10)
nil "minor mode for Perl::Critic integration" single])
(perlbrew .
[(0 1)
((cl
(0)))
"basic support for perlbrew environments" single])
(perl-myvar .
[(1 23)
nil "Declare lexicaly scoped vars as my()." single])
(pep8 .
[(1 2)
nil "run the python pep8 checker putting hits in a grep buffer" single])
(peepopen .
[(0 1 0)
nil "Graphical file chooser for Emacs on Mac OS X." single])
(peep-open .
[(0 0 2)
nil "PeepOpen plugin for emacs." single])
(pde .
[(0 2 16)
nil "Perl Development Environment" tar])
(pcsv .
[(1 3 3)
nil "Parser of csv" single])
(pcre2el .
[(1 5)
((cl-lib
(0 3)))
"parse, convert, and font-lock PCRE, Emacs and rx regexps" single])
(pcmpl-args .
[(0 1 1)
nil "Enhanced shell command completion" single])
(pcache .
[(0 3 1)
((eieio
(1 3)))
"persistent caching for Emacs" single])
(pc-mode .
[(0 1)
nil "major mode for editing PC code," single])
(pbcopy .
[(0 1 0)
nil "OS X clipboard integration for Emacs" single])
(pastels-on-dark-theme .
[(0 3)
nil "Pastels on Dark theme for Emacs 24" single])
(pastebin .
[(0 1)
nil "A simple interface to the www.pastebin.com webservice" single])
(paste-kde .
[(0 6)
((web
(0 3 6)))
"paste text to KDE's pastebin service" single])
(passmm .
[(0 2 0)
nil "A minor mode for pass (Password Store). " tar])
(parscope .
[(0 1 0)
nil "Minor mode for showing the current scope in Lisp-like languages." single])
(parenface2 .
[(1 1)
nil "Provide a face for parens in lisp modes." single])
(parenface-reversion .
[(1 2)
nil "Provide a face for parens in lisp modes." single])
(parenface-plus .
[(1 1)
nil "Provide a face for parens in lispy modes." tar])
(parenface .
[(1 1)
nil "Provide a face for parens in lisp modes." single])
(paredit-menu .
[(1 0)
nil "Adds a menu to paredit.el as memory aid" single])
(paredit-everywhere .
[(0 3)
((paredit
(22)))
"Enable some paredit features in non-lisp buffers" single])
(paredit .
[(22)
nil "minor mode for editing parentheses" single])
(palimpsest-mode .
[(0 8)
nil "Various deletion strategies when editing" single])
(palimpsest .
[(1 0)
nil "Various deletion strategies when editing" single])
(pager-default-keybindings .
[(1 1)
nil "Add the default keybindings suggested for pager.el" single])
(pager .
[(2 0)
nil "windows-scroll commands" single])
(page-break-lines .
[(0 9)
nil "Display ugly ^L page breaks as tidy horizontal lines" single])
(package-store .
[(0 3)
nil "a package cache" single])
(package .
[(1 0 1)
((tabulated-list
(1 0)))
"Simple package system for Emacs" single])
(pabbrev .
[(4 2)
nil "Predictive abbreviation expansion" single])
(p4 .
[(11 0)
nil "Perforce-Emacs Integration Library" single])
(oz .
[(16513)
nil "Major mode for editing Oz programs" tar])
(overseer .
[(0 1 0)
((emacs
(24))
(dash
(2 10 0))
(pkg-info
(0 4)))
"Ert-runner Integration Into Emacs." single])
(outlined-elisp-mode .
[(1 0 5)
nil "outline-minor-mode settings for emacs lisp" single])
(outer-spaces .
[(20170825 2025)
nil "A minimalistic minor-mode to highlight redundant spaces" single])
(otter-mode .
[(1 2)
nil "Major mode for source files of the Otter automated theorem prover" single])
(otp .
[(1 0)
nil "a one-time password creator" single])
(osx-trash .
[(0 1 1)
((emacs
(24 1)))
"System trash for OS X" tar])
(osx-pseudo-daemon .
[(1 0)
nil "Daemon mode that plays nice with OSX." single])
(osx-location .
[(0 2)
nil "Watch and respond to changes in geographical location on OS X" tar])
(osx-browse .
[(0 8 8)
((string-utils
(0 3 2))
(browse-url-dwim
(0 6 6)))
"Web browsing helpers for OS X" single])
(org2nikola .
[(0 0 8)
nil "export html and meta data used by static blog like nikola from org file" tar])
(org2jekyll .
[(0 1 9)
((dash-functional
(2 11 0))
(s
(1 9 0))
(deferred
(0 3 1)))
"Minor mode to publish org-mode post to jekyll without specific yaml" tar])
(org2blog .
[(0 5)
((org
(7 7))
(xml-rpc
(1 6 8)))
"Blog from Org mode to wordpress" tar])
(org-trello .
[(0 8 0)
((request-deferred
(0 2 0))
(deferred
(0 4 0))
(s
(1 11 0))
(dash-functional
(2 12 1))
(dash
(2 12 1)))
"Minor mode to synchronize org-mode buffer and trello board" tar])
(org-table-comment .
[(0 2)
nil "Org table comment modes." single])
(org-static-blog .
[(1 0 3)
((emacs
(24 3)))
"a simple org-mode based static blog generator" single])
(org-readme .
[(20130322 926)
((http-post-simple
(1 0))
(yaoddmuse
(0 1 1))
(header2
(21 0))
(lib-requires
(21 0)))
"Integrates Readme.org and Commentary/Change-logs." single])
(org-publish-agenda .
[(1 7)
nil "Publish org agenda with links to other files" single])
(org-protocol-jekyll .
[(0 1)
nil "Jekyll's handler for org-protocol" single])
(org-presie .
[(0 0 5)
((framesize
(0 0 1))
(eimp
(1 4 0))
(org
(7 8 9)))
"simple presentation with an org file" single])
(org-outlook .
[(0 3)
nil "Outlook org" single])
(org-mime .
[(20120112)
nil "org html export for text/html MIME emails" single])
(org-magit .
[(0 2 2)
((magit
(1 2 0))
(org
(6 1)))
"basic support for magit links" single])
(org-journal .
[(1 12 1)
nil "a simple org-mode based journaling mode" single])
(org-gnome .
[(0 1)
((notify
(2010 8 20))
(telepathy
(0 1)))
"Orgmode integration with the GNOME desktop" single])
(org-email .
[(3 0 1)
((shadchen
(1 2))
(dash
(2 9 0))
(noflet
(0 0 12)))
"use org for an email database" single])
(org-ehtml .
[(0 20131014)
((elnode
(20130416 1626))
(org-plus-contrib
(20131007)))
"Export Org-mode files as editable web pages" tar])
(org-dotemacs .
[(0 3)
((org
(7 9 3))
(cl-lib
(1 0)))
"Store your emacs config as an org file, and choose which bits to load." single])
(org-cua-dwim .
[(0 5)
nil "Org-mode and Cua mode compatibility layer" single])
(org-cliplink .
[(0 2)
nil "insert org-mode links by URL from the clipboard" single])
(org-blog .
[(1 18 1 1)
nil "create and publish a blog with org-mode" single])
(operate-on-number .
[(1 1 0)
nil "Operate on number at point with arithmetic functions" single])
(openwith .
[(20120531)
nil "Open files with external programs" single])
(openstack-cgit-browse-file .
[(0 2)
nil "Browse the current file in OpenStack cgit" single])
(om-mode .
[(0 5 20140916)
nil "Insert Om component template with life cycle." single])
(offlineimap .
[(0 1)
nil "Run OfflineIMAP from Emacs" single])
(oddmuse .
[(20090222)
nil "edit pages on an Oddmuse wiki" single])
(octomacs .
[(0 0 1)
nil "Octopress interface for Emacs" single])
(occur-x .
[(0 1 1)
nil "Extra functionality for occur" single])
(occur-default-current-word .
[(1 0)
nil "Have M-x occur default to the word at point" single])
(ob-sml .
[(0 2)
((sml-mode
(6 4)))
"org-babel functions for template evaluation" single])
(oauth .
[(1 0 3)
nil "An Emacs oauth client. See https://github.com/psanford/emacs-oauth/" tar])
(nzenburn-theme .
[(20130513)
nil "A low contrast color theme for Emacs." single])
(nurumacs .
[(3 5 4)
nil "smooth-scrolling and minimap, like sublime editor" single])
(ntcmd .
[(1 0)
nil "major mode for editing cmd scripts" single])
(nssh-n .
[(0 9 8)
nil "SSH mode for Emacs" single])
(nssh .
[(0 9 9)
nil "New SSH mode for Emacs" single])
(nsis-mode .
[(0 44)
nil "NSIS-mode" single])
(nrepl-ritz .
[(0 6 0)
((nrepl
(0 1 5)))
"nrepl extensions for ritz" single])
(nrepl-discover .
[(0 0 1)
nil "Client to load commands from nrepl server" single])
(nrepl-decompile .
[(0 0 1)
((nrepl
(0 1 7))
(javap-mode
(9)))
"decompilation extension for nrepl.el" single])
(notmuch-labeler .
[(0 1)
nil "Improves notmuch way of displaying labels through fonts, pictures, and hyperlinks." tar])
(notify .
[(2010 8 20)
nil "notification front-end" single])
(nose-mode .
[(0 1)
((nose
(0 1 1)))
"Minor mode for running nose tests." tar])
(nose .
[(0 1 1)
nil "Easy Python test running in Emacs" single])
(noflet .
[(0 0 15)
nil "locally override functions" single])
(nodejs-repl .
[(0 0 2 1)
nil "Run Node.js REPL" single])
(no-easy-keys .
[(1 0 2)
nil "Learn the proper Emacs movement keys" single])
(nimrod-mode .
[(0 1 5)
((auto-complete
(1 4)))
"A major mode for the Nimrod programming language" single])
(niclein .
[(0 0 5)
((shadchen
(1 4))
(smartparens
(1 5)))
"Nic's lein and clojure integration" single])
(nginx-mode .
[(1 1)
nil "major mode for editing nginx config files" single])
(navigate .
[(0 1 5)
nil "Seamlessly navigate between Emacs and tmux" single])
(nav-flash .
[(1 1 0)
nil "Briefly highlight the current line" single])
(namakemono .
[(0 0 1)
nil "utility function set for namakemono" single])
(n3-mode .
[(20071215)
nil "mode for Notation 3" single])
(myterminal-controls .
[(20160119 2030)
((emacs
(24))
(cl-lib
(0 5)))
"Quick toggle controls at a key-stroke" single])
(my-packages .
[(0 1 0)
nil "Package Initialization." single])
(mwe-log-commands .
[(20041106)
nil "log keyboard commands to buffer" single])
(mvn-help .
[(0 0 1)
nil "maven help tools" single])
(mv-shell .
[(1 2)
nil "keep buffers in sync with filename throughout 'mv'commands in shell-mode." single])
(mustache-mode .
[(1 2)
nil "A major mode for editing Mustache files." single])
(mustache .
[(0 20)
((ht
(0 9))
(s
(1 3 0))
(dash
(1 2 0)))
"a mustache templating library in emacs lisp" tar])
(multiple-cursors .
[(1 3 0)
nil "Multiple cursors for Emacs." tar])
(multi-web-mode .
[(0 1)
nil "multiple major mode support for web editing" single])
(multi-term .
[(0 8 8)
nil "Managing multiple terminal buffers in Emacs." single])
(multi-project .
[(0 0 24)
nil "Easily work with multiple projects." single])
(multi-eshell .
[(0 0 1)
nil "makes it easier to use multiple shells within emacs" single])
(multi .
[(2 0 1)
((emacs
(24)))
"Clojure-style multi-methods for emacs lisp" single])
(move-text .
[(1 0)
nil "Move current line or region with M-up or M-down." single])
(move-line .
[(0 0 1)
nil "utilities for moving lines in file" single])
(mote-mode .
[(1 0 0)
((ruby-mode
(1 1)))
"Mote minor mode" single])
(monroe .
[(0 3 1)
nil "Yet another client for nREPL" single])
(monokai-theme .
[(0 0 12)
nil "DEPRECATED: Monokai Color Theme for Emacs." single])
(monky .
[(0 1)
nil "control Hg from Emacs." single])
(mongo-elnode .
[(0 5 0)
((mongo
(0 5))
(elnode
(0 9 9)))
"elnode adapter for mongo-el" single])
(mongo .
[(0 5)
nil "A MongoDB client." tar])
(moinmoin-mode .
[(1 0)
((screen-lines
(0 55)))
"a major mode to edit MoinMoin wiki pages" single])
(modtime-skip-mode .
[(0 9)
nil "Minor mode for disabling modtime and supersession checks on files." single])
(modeline-posn .
[(22 0)
nil "Set up `mode-line-position'." single])
(mode-icons .
[(0 1 0)
nil "Show icons for modes" tar])
(mode-compile .
[(2 29)
nil "Smart command for compiling files" single])
(mocker .
[(0 3 0)
((eieio
(1 3))
(el-x
(0 2 4)))
"mocking framework for emacs" single])
(moccur-edit .
[(2 16)
((color-moccur
(2 71)))
"apply replaces to multiple files" single])
(mo-git-blame .
[(0 1 0)
nil "An interactive, iterative 'git blame' mode for Emacs" single])
(mldonkey .
[(0 0 4)
nil "Multi-networks peer-to-peer client." tar])
(minitest .
[(0 9 1)
((dash
(1 0 0)))
"An Emacs mode for ruby minitest files" single])
(minimap .
[(1 0)
nil "Sidebar showing a \"mini-map\" of a buffer" single])
(minimal-session-saver .
[(0 6 2)
nil "Very lean session saver" single])
(midje-mode .
[(0 1 2)
((slime
(1 0))
(clojure-mode
(1 0)))
"Minor mode for running Midje tests in emacs, see: https://github.com/dnaumov/midje-mode" tar])
(mic-paren .
[(3 8)
nil "advanced highlighting of matching parentheses" single])
(meta-presenter .
[(20150501 410)
nil "A simple multi-file presentation tool for Emacs" single])
(message-templ .
[(0 1 20141026)
nil "Templates for message-mode." single])
(memoize .
[(1 0 1)
nil "Memoization functions" single])
(mediawiki .
[(2 2 3)
nil "mediawiki frontend" single])
(mc-jump .
[(1 0 0)
nil "like \"jump-char\", but \"multiple-cursors\" friendly" single])
(mbe .
[(0 1)
((emacs
(24))
(cl-lib
(0 5)))
"Macros by Example" single])
(maxframe .
[(0 5 1)
nil "maximize the emacs frame based on display size" single])
(math-at-point .
[(0 0 1)
nil "Utilities for modifying numbers at point" single])
(master-mode .
[(0 1)
nil "Become an Emacs master" single])
(marshal .
[(0 5 1)
((eieio
(1 4))
(json
(1 3)))
"eieio extension for automatic (un)marshalling" single])
(marmalade-upload .
[(0 0 5)
((web
(0 4 2))
(kv
(0 0 19)))
"upload client for marmalade from emacs" single])
(marmalade-test .
[(0 0 1)
nil "A test tarball package." tar])
(marmalade-service .
[(2 0 16)
((dash
(1 1 0))
(s
(1 6 0))
(kv
(0 0 16))
(noflet
(0 0 7))
(elnode
(0 9 9 8 6))
(file-format
(0 0 1))
(htmlize
(1 3 9)))
"The Marmalade package store service." tar])
(marmalade-demo .
[(0 0 5)
nil "a demonstration elpa package" single])
(marmalade-client .
[(0 0 12)
((web
(0 5 2))
(kv
(0 0 19))
(gh
(0 8 0)))
"client for marmalade API from emacs" single])
(marmalade .
[(0 0 4)
((furl
(0 0 2)))
"Elisp interface for the Emacs Lisp package server." single])
(markup-faces .
[(1 0 0)
nil "collection of faces for markup language modes" single])
(markdown-toc .
[(0 1 2)
((markdown-mode
(2 1))
(dash
(2 11 0))
(s
(1 9 0)))
"A simple TOC generator for markdown file" single])
(markdown-mode .
[(2 0)
nil "Emacs Major mode for Markdown-formatted text files" single])
(mark-tools .
[(0 3)
nil "Some simple tools to access the mark-ring in Emacs" single])
(mark-multiple .
[(1 0)
nil "A library that sorta lets you mark several regions at once" single])
(mark-more-like-this .
[(1 0)
nil "Mark additional regions in buffer matching current region." single])
(mark .
[(0 3)
((fm
(1 0)))
"Navigate and visualize the mark-ring" single])
(margo .
[(2012 9 18)
((web
(0 1 8))
(json
(1 2)))
"Client for MarGo, providing Go utilities" single])
(man-commands .
[(1 1)
nil "Add interactive commands for every manpages installed in your computer." single])
(makefile-runner .
[(1 1 2)
nil "Searches for Makefile and fetches targets" single])
(mainline .
[(1 1 0)
nil "modeline replacement forked from an early version of powerline.el" single])
(main-line .
[(1 2 8)
nil "modeline replacement forked from an early version of powerline.el" single])
(maildir .
[(0 0 28)
((kv
(0 0 17))
(dash
(2 3 0))
(s
(1 9 0))
(noflet
(0 0 8)))
"Simple maildir based MUA." tar])
(magit-tramp .
[(0 1 0)
((magit
(1 2 0)))
"git method for TRAMP" single])
(magit-simple-keys .
[(1 0 0)
((magit
(1 0 0)))
"simple keybindings for Magit" single])
(magit-popup .
[(2 4 1)
((emacs
(24 4))
(async
(1 5))
(dash
(2 12 1)))
"Define prefix-infix-suffix command combos" tar])
(magit-gh-pulls .
[(0 3)
((gh
(0 4 3))
(magit
(1 1 0)))
"GitHub pull requests extension for Magit" single])
(magit-find-file .
[(1 0 4)
((magit
(1 2 0)))
"completing-read over all files in Git" single])
(magit .
[(2 4 1)
((emacs
(24 4))
(async
(1 5))
(dash
(2 12 1))
(with-editor
(2 4 1))
(git-commit
(2 4 1))
(magit-popup
(2 4 1)))
"A Git porcelain inside Emacs" tar])
(mactag .
[(0 0 1)
nil "Mode for automatically handle multiple tags files with Mactag rubygem" single])
(macrostep .
[(0 8)
nil "interactive macro stepper for Emacs Lisp" single])
(macro-utils .
[(1 0)
nil "Utilities for writing macros." single])
(mac-key-mode .
[(2010 1 3)
nil "provide mac-style key bindings on Carbon Emacs" single])
(m-buffer .
[(0 8)
((emacs
(24 3))
(dash
(2 5 0)))
"Buffer Manipulation Functions" tar])
(lyskom .
[(20131008)
nil "LysKOM elisp client." single])
(lxc .
[(0 0 2)
nil "lxc integration with Emacs" single])
(lui .
[(1 6)
((tracking
(1 6)))
"Linewise User Interface" tar])
(lua-mode .
[(20110428)
nil "a major-mode for editing Lua scripts" single])
(lorem-ipsum .
[(0 1)
nil "Insert dummy pseudo Latin text." single])
(loop .
[(1 1)
nil "friendly imperative loop structures" single])
(look-mode .
[(1 0)
nil "quick file viewer for image and text file browsing" single])
(look-dired .
[(0 1)
((look-mode
(1 0)))
"Extensions to look-mode for dired buffers" single])
(lolcode-mode .
[(0 2)
nil "Major mode for editing LOLCODE" single])
(logito .
[(0 1)
((eieio
(1 3)))
"logging library for Emacs" single])
(load-theme-buffer-local .
[(0 0 2)
nil "Install emacs24 color themes by buffer." single])
(livid-mode .
[(0 1 0)
((skewer-mode
(1 5 3))
(s
(1 8 0)))
"Live browser eval of JavaScript every time a buffer changes" single])
(livescript-mode .
[(0 0 1)
nil "Major mode for LiveScript files in Emacs" single])
(livecoder .
[(0 0 2)
nil "tools for live coders" single])
(list-utils .
[(0 4 2)
nil "List-manipulation utility functions" single])
(list-register .
[(2 2)
nil "List register" single])
(lispyscript-mode .
[(0 3 1)
nil "Major mode for LispyScript code." single])
(lisp-infection .
[(0 0 10)
nil "Commands to *enhance* S-exp editing" single])
(lisp-editing .
[(0 0 5)
nil "lisp editing tools" single])
(linum-off .
[(0 1)
nil "Provides an interface for turning line-numbering off" single])
(linky-client .
[(0 0 2)
nil "a client for linky.elnode.org" single])
(lineno .
[(0 1)
nil "Alternate mode to display line numbers." single])
(linear-undo .
[(5 2)
nil "Intuitive undo/redo." single])
(lib-requires .
[(21 0)
nil "Commands to list Emacs Lisp library dependencies." single])
(lexbind-mode .
[(0 9)
nil "Puts the value of lexical-binding in the mode line" single])
(levenshtein .
[(1 0)
nil "Edit distance between two strings." single])
(let-recur .
[(0 0 5)
nil "Simplified implementation of recur" single])
(less-css-mode .
[(0 18)
nil "Major mode for editing LESS CSS files (lesscss.org)" single])
(lentic .
[(0 7)
((emacs
(24 4))
(m-buffer
(0 8))
(dash
(2 5 0))
(f
(0 17 2)))
"One buffer as a view of another" tar])
(legalese .
[(20120706)
nil "Add legalese to your program files" single])
(lcs .
[(1 6)
nil "find out the longest common sequence" single])
(layout-restore .
[(0 4)
nil "keep window configuration as layout and restore it simply." single])
(latex-preview-pane .
[(20140205)
nil "Makes LaTeX editing less painful by providing a updatable preview pane" tar])
(latex-pretty-symbols .
[(1 0)
nil "Display many latex symbols as their unicode counterparts" single])
(latest-clojure-libraries .
[(0 5)
nil "Clojure dependency resolver" single])
(latest-clojars .
[(0 3)
nil "Clojure dependency resolver" single])
(late-night-theme .
[(0 0)
nil "Late Night theme for Emacs 24" single])
(langtool .
[(1 2 1)
nil "Grammar check utility using LanguageTool" single])
(lang-refactor .
[(0 1 1)
nil "Simple refactorings, primarily for Perl" single])
(lacarte .
[(22 0)
nil "Execute menu items as commands, with completion." single])
(kwin .
[(0 1)
nil "communcate with the KWin window manager" single])
(kv .
[(0 0 19)
nil "key/value data structure functions" single])
(kpm-list .
[(1 0)
nil "An emacs buffer list that tries to intelligently group together buffers." single])
(kmacro-decision .
[(1 5)
((el-x
(1 0))
(jb-misc-macros
(0 2)))
"Add conditional branching to keyboard macros" single])
(keywiz .
[(1 4)
nil "Emacs key sequence quiz" single])
(keyfreq .
[(0 0 3)
((json
(1 2)))
"track command frequencies" single])
(key-combo .
[(1 5 1)
nil "map key sequence to commands" single])
(key-chord .
[(0 5 20080915)
nil "map pairs of simultaneously pressed keys to commands" single])
(key-choices .
[(0 201)
((color-theme-vim-insert-mode
(0 1))
(color-theme-emacs-revert-theme
(0 1)))
"Key Choices -- Also Viper has different colors in different modes" single])
(karma .
[(0 1 0)
nil "Karma Test Runner Emacs Integration" single])
(kanban .
[(0 2 1)
nil "Parse org-todo headlines to use org-tables as Kanban tables" single])
(jump-dls .
[(0 6)
nil "Jump to definition of symbol using various methods." single])
(jump-char .
[(0 1)
nil "navigation by char" single])
(jump .
[(2 3)
((findr
(0 7))
(inflections
(1 1)))
"build functions which contextually jump between files" single])
(jujube-theme .
[(0 1)
nil "Pastel theme loosely based on jellybeans" single])
(json-snatcher .
[(1 0)
nil "Grabs the path to JSON values in a JSON file." single])
(json-mode .
[(1 2 0)
nil "Major mode for editing JSON files" single])
(json .
[(1 2)
nil "JavaScript Object Notation parser / generator" single])
(js-comint .
[(0 0 1)
nil "Run javascript in an inferior process window." single])
(journal .
[(1 2 1)
nil "a simple org-mode based journaling mode" single])
(jira .
[(0 3 3)
nil "Connect to JIRA issue tracking software" single])
(jinja2-mode .
[(0 1)
nil "A major mode for jinja2" single])
(jenkins-watch .
[(1 2)
nil "Watch continuous integration build status" single])
(jedi .
[(0 1 2)
((epc
(0 1 0))
(auto-complete
(1 4)))
"Python auto-completion for Emacs" tar])
(jcuken-fix .
[(1 0)
nil "Map Modifier-CyrillicLetter to the underlying Modifier-LatinLetter." single])
(jb-misc-macros .
[(0 4)
((macro-utils
(1 0)))
"Miscellaneous macros" single])
(javarun .
[(0 1 1)
nil "Minor mode for quick development of Java programs" single])
(javap-mode .
[(9)
nil "Javap major mode" single])
(javap .
[(8)
nil "Javap major mode" single])
(java-file-create .
[(1 0)
nil "automatically insert contents of empty java files" single])
(jaunte .
[(0 0 0)
nil "Emacs Hit a Hint" single])
(jasmin .
[(1 2)
nil "major editing mode for Jasmin Java bytecode assembler files" single])
(jammer .
[(0 1 1)
nil "Punish yourself for using Emacs inefficiently" single])
(jam-mode .
[(0 3)
nil "Font-lock support for Jam files" single])
(jade-mode .
[(0 1)
nil "Major mode for editing jade templates." single])
(jabber .
[(0 8 90)
nil "A Jabber client for Emacs." tar])
(j-mode .
[(0 3)
nil "Major mode for editing J programs" single])
(iy-go-to-char .
[(1 0)
nil "Go to next CHAR which is similar to \"f\" in vim" single])
(ix .
[(0 7)
((grapnel
(0 5 3)))
"Emacs client for http://ix.io pastebin" single])
(issue-tracker .
[(0 0 1)
nil "Poor man's issue tracker" tar])
(isgd .
[(20130927)
nil "Shorten URLs using the isgd.com shortener service" single])
(isearch-switch .
[(1 0)
nil "switch the manner you are isearching in." single])
(isea .
[(0 0 2)
((elpakit
(0 0 18)))
"interactive server eval at mode, a comint for a daemonized emacs" single])
(irfc .
[(0 5 6)
nil "Interface for IETF RFC document." single])
(iregister .
[(0 5 0)
nil "Interactive register commands for Emacs." tar])
(ir-black-theme .
[(1 0)
nil "Port of ir-black theme" single])
(ipython .
[(2927)
nil "Adds support for IPython to python-mode.el" single])
(insert-shebang .
[(0 9 6)
nil "Insert shebang line automatically." single])
(inline-crypt .
[(0 1 4)
nil "Simple inline encryption via openssl" tar])
(initchart .
[(0 1 1)
((cl-lib
(0 3)))
"Emacs' init process performance visualization" single])
(inform-mode .
[(1 6 2)
nil "Major mode for Inform 6 interactive fiction code" single])
(inf-ruby .
[(2 5 0)
nil "Run a Ruby process in a buffer" single])
(inf-groovy .
[(2 0)
nil "minor-mode that adds some Grails project management to a grails project" single])
(inf-clojure .
[(1 0 0)
((emacs
(24 1))
(clojure-mode
(4 0)))
"an inferior-clojure mode" single])
(immutant-server .
[(1 0 1)
nil "Run your Immutant server in Emacs" single])
(imgur .
[(0 1)
((anything
(1 287)))
"imgur client for Emacs" single])
(igrep .
[(2 113)
nil "An improved interface to `grep` and `find`" single])
(ignoramus .
[(0 7 2)
nil "Ignore backups, build files, et al." single])
(iedit .
[(0 97)
nil "Edit multiple regions in the same way simultaneously." tar])
(idomenu .
[(0 1)
nil "imenu tag selection with ido" single])
(ido-yes-or-no .
[(1 1)
((ido
(0)))
"Use Ido to answer yes-or-no questions" single])
(ido-vertical-mode .
[(0 1 1)
nil "Makes ido-mode display vertically." single])
(ido-ubiquitous .
[(2 10)
((emacs
(24 1)))
"Use ido (nearly) everywhere." single])
(ido-select-window .
[(0 1 0)
nil "Select a window using ido and buffer names." tar])
(ido-load-library .
[(0 2 0)
((persistent-soft
(0 8 8))
(pcache
(0 2 3)))
"Load-library alternative using ido-completing-read" single])
(ido-gnus .
[(0 4)
((gnus
(5 13)))
"Access gnus groups or servers using ido" single])
(ido-better-flex .
[(0 2)
nil "A better flex (fuzzy) algorithm for Ido." single])
(idle-require .
[(1 0)
nil "load elisp libraries while Emacs is idle" single])
(idle-highlight-mode .
[(1 1 2)
nil "highlight the word the point is on" single])
(idle-highlight .
[(1 0)
nil "highlight the word the point is on" single])
(ical-pull .
[(0 0 3)
((shadchen
(1 2))
(dash
(2 9 0))
(s
(1 9 0))
(noflet
(0 0 14))
(web
(0 5 1)))
"pull ical feeds into org-agenda" single])
(ibuffer-vc .
[(0 7)
((cl-lib
(0 2)))
"Group ibuffer's list by VC project, or show VC status" single])
(iasm-mode .
[(0 1)
nil "interactive assembly major mode." single])
(huskie .
[(0 0 2)
((anaphora
(0 0 6)))
"chainsaw powered logging" single])
(hungry-delete .
[(1 1 2)
nil "hungry delete minor mode" single])
(hugo .
[(0 1 2)
nil "Helper functions for Hugo" single])
(httpd .
[(1 0 1)
nil "HTTP/1.0 web server for emacs" single])
(httpcode .
[(0 1)
nil "explains the meaning of an HTTP status code" single])
(http-twiddle .
[(1 0)
nil "send & twiddle & resend HTTP requests" single])
(htmlize .
[(1 39)
nil "Convert buffer text and decorations to HTML." single])
(htmlfontify .
[(0 21)
nil "htmlise a buffer/source tree with optional hyperlinks" single])
(html-script-src .
[(0 0 2)
nil "Insert <script src=\"..\"> for popular JavaScript libraries" single])
(ht .
[(1 5)
nil "The missing hash table library for Emacs" single])
(how-many-lines-in-project .
[(0 3)
((find-file-in-project
(3 3)))
"Calculate how many lines are there in your project." single])
(hook-utils .
[(1 0)
nil "Add a few utility functions for manipulating hooks" single])
(hlinum .
[(1 0)
nil "Extension for linum.el to highlight current line number" single])
(hl-spotlight .
[(0)
nil "Extension of hl-line.el to spotlight current few lines." single])
(hl-sexp .
[(1 0 0)
nil "highlight the current sexp" single])
(hl-sentence .
[(2)
nil "highlight a sentence based on customizable face" single])
(hjkl-mode .
[(0 1)
((key-chord
(0 5)))
"import some vim's key bindings" tar])
(hive .
[(0 1 1)
((sql
(3 0)))
"Hive SQL mode extension" single])
(hippie-namespace .
[(0 5 8)
nil "Special treatment for namespace prefixes in hippie-expand" single])
(hippie-expand-slime .
[(0 1)
nil "Hook slime's completion into hippie-expand" single])
(hippie-expand-haskell .
[(0 0 1)
nil "Hippie expand try function using ghc's completion function." single])
(highline .
[(7 2 2)
nil "minor mode to highlight current line in buffer" single])
(highlight-symbol .
[(1 1)
nil "automatic and manual symbol highlighting" single])
(highlight-sexp .
[(1 0)
nil "highlight current zone according to its context" single])
(highlight-parentheses .
[(1 0 1)
nil "highlight surrounding parentheses" single])
(highlight-indentation .
[(0 5 0)
nil "Function for highlighting indentation" single])
(highlight-escape-sequences .
[(0 1)
nil "Highlight escape sequences" single])
(highlight-current-line .
[(0 57)
nil "highlight line where the cursor is." single])
(highlight .
[(21 0)
nil "Highlighting commands." single])
(hideshowvis .
[(0 5)
nil "Add markers to the fringe for regions foldable by hideshow.el" single])
(hide-lines .
[(20130623 1701)
nil "Commands for hiding lines based on a regexp" single])
(hide-comnt .
[(40)
nil "Hide/show comments in code." tar])
(hexrgb .
[(21 0)
nil "Functions to manipulate colors, including RGB hex strings." single])
(heroku-theme .
[(1 1 0)
nil "Heroku color theme" single])
(heroku .
[(1 1 0)
nil "Interface to Heroku apps." single])
(helm-projectile .
[(0 10 0)
((helm
(1 4 0))
(projectile
(0 10 0)))
"Helm integration for Projectile" single])
(helm-helm-commands .
[(0 2)
((helm
(1 5 4)))
"List all helm commands with helm" single])
(helm-gtags .
[(0 9 2)
((helm
(1 0)))
"GNU GLOBAL helm interface" single])
(helm-delicious .
[(1 3)
nil "helm extensions for delicious bookmarks" single])
(helm-dash .
[(1 1)
((helm
(0 0 0)))
"Helm extension to search dash docsets" single])
(helm-ag .
[(0 4)
((helm
(1 0)))
"the silver search with helm interface" single])
(header2 .
[(21 0)
nil "Support for creation and update of file headers." single])
(haxe-mode .
[(0 3 1)
nil "An Emacs major mode for haXe" single])
(haste .
[(1)
((json
(1 2)))
"Emacs client for hastebin (http://hastebin.com/about.md)" single])
(haskell-mode .
[(13 7)
nil "A Haskell editing mode" tar])
(hardhat .
[(0 4 4)
((ignoramus
(0 7 0)))
"Protect against clobbering user-writable files" single])
(hardcore-mode .
[(1 0 0)
nil "Disable arrow keys + optionally backspace and return" single])
(handlebars-sgml-mode .
[(0 1 0)
nil "Add Handlebars contextual indenting support to sgml-mode" single])
(handlebars-mode .
[(1 3)
nil "A major mode for editing Handlebars files." single])
(haml-mode .
[(3 1 8)
((ruby-mode
(1 0)))
"Major mode for editing Haml files" single])
(hackernews .
[(0 3 1)
((json
(1 2)))
"Access the hackernews aggregator from Emacs" tar])
(gvpr-mode .
[(0 1 0)
nil "A major mode offering basic syntax coloring for gvpr scripts." single])
(guru-mode .
[(0 2)
nil "Become an Emacs guru" single])
(guile-scheme .
[(0 1)
nil "Guile Scheme editing mode" single])
(guess-offset .
[(0 1 1)
nil "Automatically determine c-basic-offset" single])
(gtags .
[(3 3)
nil "gtags facility for Emacs" single])
(gruber-darker-theme .
[(0 6)
nil "Gruber Darker color theme for Emacs 24." single])
(grr .
[(1 0 0)
nil "Simple Growl notifications for Emacs and Mac OS X" single])
(groovy-mode .
[(201203310931)
nil "Groovy mode derived mode" single])
(grizzl .
[(0 1 1)
((cl-lib
(0 1)))
"Fuzzy Search Library & Completing Read" tar])
(grin .
[(1 0)
nil "run grin and grind (python replacements for grep and find) putting hits in a grep buffer" single])
(grep-o-matic .
[(1 0 6)
nil "auto grep word under cursor" single])
(grep-a-lot .
[(1 0 7)
nil "manages multiple search results buffers for grep.el" single])
(gratuitous-dark-theme .
[(1 3)
nil "A theme originally by 'cofi' from #emacs, Freenode. It is a combination of Monokai and several other themes. The modeline has been modelled after AwesomeWM because it looks cool." single])
(grapnel .
[(0 5 3)
nil "HTTP request lib with flexible callback dispatch" single])
(graphviz-dot-mode .
[(0 3 7)
nil "Mode for the dot-language used by graphviz (att)." single])
(grails-mode .
[(0 1)
nil "minor-mode that adds some Grails project management to a grails project" single])
(gplusify .
[(1 0)
nil "Add Google Plus markup to a piece of code" single])
(goto-last-change .
[(1 2)
nil "Move point through buffer-undo-list positions" single])
(goto-chg .
[(1 6)
nil "goto last change" single])
(gotham-theme .
[(1 1 8)
nil "A very dark Emacs color theme." single])
(gotests .
[(0 0 2)
nil "Emacs package for https://github.com/cweill/gotests" single])
(gopher .
[(0 0 2)
nil "easily access and navigate Gopher servers" single])
(google-translate .
[(0 10 4)
nil "Emacs interface to Google Translate." tar])
(god-mode .
[(2 12 0)
nil "God-like command entering minor mode" single])
(go-play .
[(0 0 1)
nil "Paste to play.golang.org" single])
(go-mode .
[(20131222)
nil "Major mode for the Go programming language" single])
(gnusnotes .
[(0 91)
nil "Adding per-message notes in gnus summary buffer" single])
(gnus-summary-ext .
[(0 1)
((macro-utils
(1 0)))
"Extra limit and process mark commands for the gnus summary buffer" single])
(gnuplot .
[(0 6 0)
nil "drive gnuplot from within emacs" single])
(gnugo .
[(2 2 12)
nil "Play a game of Go against gnugo" single])
(gnomenm .
[(0 0 3)
nil "Emacs interface to Gnome nmcli command" single])
(gitty .
[(1 0)
nil "vc-mode extension for fast git interaction" single])
(gitignore-mode .
[(1 2 0)
nil "Major mode for editing .gitignore files" single])
(github-theme .
[(0 0 3)
nil "Github color theme for GNU Emacs 24" single])
(github-browse-file .
[(0 4 0)
((cl-lib
(0 5)))
"View the file you're editing on GitHub" single])
(gitconfig-mode .
[(1 2 0)
nil "Major mode for editing .gitconfig files" single])
(gitconfig .
[(1 0 0)
nil "Emacs lisp interface to work with git-config variables" single])
(gitattributes-whitespace .
[(1 20141128)
nil "configure whitespace settings from gitattributes" single])
(gitattributes-mode .
[(1 2 0)
nil "Major mode for editing .gitattributes files" single])
(git-gutter-fringe .
[(0 12)
((git-gutter
(0 42))
(fringe-helper
(0 1 1)))
"Fringe version of git-gutter.el" single])
(git-gutter .
[(0 78)
((cl-lib
(0 5))
(emacs
(24)))
"Port of Sublime Text plugin GitGutter" single])
(git-draft .
[(0 0 2)
((dash
(2 9 0)))
"draft git commit messages" single])
(git-commit .
[(2 4 1)
((emacs
(24 4))
(dash
(2 12 1))
(with-editor
(2 4 1)))
"Edit Git commit messages" single])
(git-auto-commit-mode .
[(4 4 0)
nil "Emacs Minor mode to automatically commit and push" single])
(gist .
[(1 3 1)
((emacs
(24 1))
(gh
(0 9 2)))
"Emacs integration for gist.github.com" single])
(gimme .
[(2 1)
nil "The XMMS2 interface we all love! Check out http://gimmeplayer.org for more info." tar])
(ghci-completion .
[(0 1 3)
nil "Completion for GHCi commands in inferior-haskell buffers" single])
(ghc .
[(1 10 2)
((haskell-mode
(2 8 0)))
"Happy Haskell programming on Emacs" tar])
(gh .
[(0 9 2)
((eieio
(1 4))
(pcache
(0 3 0))
(logito
(0 1)))
"A GitHub library for Emacs" tar])
(gerrit-download .
[(0 2)
((magit
(20130828 1540)))
"Show gerrit reviews in a diff buffer." single])
(generate-autoloads .
[(0 0 10)
nil "A package to help you lazy-load everything" single])
(geiser .
[(0 6)
nil "GNU Emacs and Scheme talk to each other" tar])
(gecf .
[(0 1 0)
nil "G\366ktu's Emacs configuration framework." single])
(geben .
[(0 26)
nil "A remote debugging environment for Emacs." tar])
(gccsense .
[(0 2)
nil "GCCSense client for Emacs" single])
(gather .
[(1 0 4)
nil "Gather string in buffer." single])
(garoon .
[(0 0 1)
nil "A Garoon client." single])
(gandalf-theme .
[(0 1)
nil "Gandalf color theme" single])
(fuzzy-match .
[(1 4)
nil "fuzzy matching" single])
(fuzzy-format .
[(0 1 1)
nil "select indent-tabs-mode and format code automatically." single])
(fuzzy .
[(0 1)
nil "Fuzzy Matching" single])
(furl .
[(0 0 3)
nil "Friendly URL retrieval" single])
(fullscreen-mode .
[(0 0 1)
nil "fullscreen window support for Emacs" single])
(full-ack .
[(0 2 3)
nil "a front-end for ack" single])
(fsvn .
[(0 9 13)
nil "Another frontend of subversion." tar])
(fsbot-data-browser .
[(0 1)
((dash
(2 12 1)))
"browse the fsbot database using tabulated-list-mode" single])
(fringe-helper .
[(1 0 1)
nil "helper functions for fringe bitmaps" single])
(framesize .
[(0 0 5)
((key-chord
(0 5 20080915)))
"change the size of frames in Emacs" single])
(frame-tag .
[(0 1 0)
nil "Minor mode that assigns a unique number to each frame for easy switching" single])
(frame-restore .
[(0 5)
((emacs
(24 1)))
"Restore Emacs frame" single])
(fpaste .
[(0 1 3)
nil "Send text to http://fpaste.org" single])
(form-feed .
[(0 2 2)
nil "Display ^L glyphs as horizontal lines" single])
(fooddice .
[(0 1)
nil "Help me I am hungry and dont know what to eat!" single])
(font-utils .
[(0 7 0)
((persistent-soft
(0 8 8))
(pcache
(0 2 3)))
"Utility functions for working with fonts" single])
(fold-this .
[(0 3 0)
nil "Just fold this region please" single])
(fold-dwim-org .
[(0 5)
((fold-dwim
(1 2)))
"Fold DWIM bound to org key-strokes." single])
(fold-dwim .
[(1 2)
nil "Unified user interface for Emacs folding modes" single])
(fm .
[(20130612 1)
nil "follow mode for compilation/output buffers" single])
(flyspell-lazy .
[(0 6 6)
nil "Improve flyspell responsiveness using idle timers" single])
(flymake-shell .
[(0 8)
((flymake-easy
(0 1)))
"A flymake syntax-checker for shell scripts" single])
(flymake-sass .
[(0 6)
((flymake-easy
(0 1)))
"Flymake handler for sass files" single])
(flymake-ruby .
[(0 8)
((flymake-easy
(0 1)))
"A flymake handler for ruby-mode files" single])
(flymake-racket .
[(0 40)
((flymake-easy
(0 1)))
"A flymake handler for scheme-mode files" single])
(flymake-python-pyflakes .
[(0 9)
((flymake-easy
(0 8)))
"A flymake handler for python-mode files using pyflakes (or flake8)" single])
(flymake-puppet .
[(1 0 0)
((flymake-easy
(0 9)))
"An Emacs flymake handler for syntax-checking puppet using puppet-lint" single])
(flymake-phpcs .
[(1 0 5)
((flymake
(0 3)))
"Flymake handler for PHP to invoke PHP-CodeSniffer" tar])
(flymake-php .
[(0 5)
((flymake-easy
(0 1)))
"A flymake handler for php-mode files" single])
(flymake-perlcritic .
[(1 0 3)
((flymake
(0 3)))
"Flymake handler for Perl to invoke Perl::Critic" tar])
(flymake-lua .
[(1 0)
nil "Flymake for Lua" single])
(flymake-less .
[(0 3)
((less-css-mode
(0 15)))
"Flymake handler for LESS stylesheets (lesscss.org)" single])
(flymake-json .
[(0 1)
((flymake-easy
(0 1)))
"A flymake handler for json using jsonlint" single])
(flymake-jslint .
[(0 10)
((flymake-easy
(0 1)))
"A flymake handler for javascript using jslint" single])
(flymake-jshint .
[(1 0)
nil "making flymake work with JSHint" single])
(flymake-hlint .
[(0 2)
((flymake-easy
(0 1)))
"A flymake handler for haskell-mode files using hlint" single])
(flymake-haskell-multi .
[(0 3)
((flymake-easy
(0 1)))
"Syntax-check haskell-mode using both ghc and hlint" single])
(flymake-haml .
[(0 7)
((flymake-easy
(0 1)))
"A flymake handler for haml files" single])
(flymake-go .
[(2013 3 14)
((flymake
(0 4 13)))
"A flymake handler for go-mode files" single])
(flymake-gdc .
[(0 1)
nil "A flymake handler for d-mode files using the GDC compiler" tar])
(flymake-elixir .
[(0 5)
nil "A flymake handler for elixir-mode .ex files." single])
(flymake-easy .
[(0 9)
nil "Helpers for easily building flymake checkers" single])
(flymake-d .
[(0 1)
nil "A flymake handler for d-mode files" single])
(flymake-cursor .
[(1 0 2)
((flymake
(0 3)))
"Show flymake messages in the minibuffer after delay" tar])
(flymake-csslint .
[(1 1 0)
((flymake
(0 3)))
"making flymake work with CSSLint" tar])
(flymake-css .
[(0 3)
((flymake-easy
(0 1)))
"Flymake support for css using csslint" single])
(flymake-coffee .
[(0 12)
((flymake-easy
(0 1)))
"A flymake handler for coffee script" single])
(flymake-checkers .
[(0 5)
nil "Transition package to Flycheck" single])
(flymake .
[(0 4 16)
nil "a universal on-the-fly syntax checker" single])
(flycheck-vala .
[(0 1)
((vala-mode
(20150324 1525))
(flycheck
(20150317 2246)))
"Provides support for use of valac as a Flycheck checker for Vala." tar])
(flycheck-tcl .
[(0 4)
((flycheck
(0 17)))
"A flycheck checker for Tcl using ActiveState's tclchecker" single])
(flycheck-ocaml .
[(0 2)
((emacs
(24 1))
(flycheck
(0 22 -3 1))
(merlin
(2 0))
(let-alist
(1 0 3)))
"Flycheck: OCaml support" single])
(flycheck-ledger .
[(0 2)
((flycheck
(0 15)))
"Flycheck integration for ledger files" single])
(flycheck-hdevtools .
[(0 2)
((flycheck
(0 15)))
"A flycheck checker for Haskell using hdevtools" single])
(flycheck-haskell .
[(0 7)
((flycheck
(0 22))
(haskell-mode
(13 7))
(dash
(2 4 0))
(let-alist
(1 0 1)))
"Flycheck: Cabal projects and sandboxes" tar])
(flycheck-gdc-dub .
[(0 1)
((d-mode
(20150317 117))
(flycheck
(20150317 2246)))
"Provides support for retrieving include paths from dub build descriptions.." tar])
(flycheck-gdc .
[(0 3)
((d-mode
(20150317 117))
(flycheck
(20150317 2246)))
"Provides support for use of GDC as a Flycheck checker for Dlang." tar])
(flycheck-color-mode-line .
[(0 3)
((flycheck
(0 15))
(dash
(1 2))
(emacs
(24 1)))
"Change mode line color with Flycheck status" single])
(flycheck-cask .
[(0 2 1)
((emacs
(24 1))
(flycheck
(0 14))
(dash
(2 4 0)))
"Cask support in Flycheck" single])
(flycheck .
[(0 23)
((emacs
(24 1))
(cl-lib
(0 3))
(let-alist
(1 0 1))
(pkg-info
(0 4))
(dash
(2 4 0)))
"Modern on-the-fly syntax checking for GNU Emacs" tar])
(flx-ido .
[(0 2)
((flx
(0 1)))
"flx integration for ido" single])
(flx .
[(0 1)
nil "fuzzy matching with good sorting" single])
(flex-autopair .
[(0 3)
nil "Automatically insert pair braces and quotes, insertion conditions & actions are highly customizable." single])
(flatland-theme .
[(0 1 2)
nil "A simple theme for Emacs." single])
(fixmee .
[(0 8 6)
((button-lock
(1 0 2))
(nav-flash
(1 0 0))
(back-button
(0 6 0))
(smartrep
(0 0 3))
(string-utils
(0 3 2))
(tabulated-list
(0)))
"Quickly navigate to FIXME notices in code" single])
(fixme-mode .
[(1 0 2)
nil "fixme minor mode to highlight warning words" single])
(fit-frame .
[(0)
nil "Resize a frame. In particular, fit a frame to its buffers." single])
(firestarter .
[(0 2 5)
nil "Execute (shell) commands on save" single])
(fiplr .
[(0 1 3)
nil "Fuzzy finder for files in a project." single])
(findr .
[(0 7)
nil "Breadth-first file-finding facility for (X)Emacs" single])
(find-things-fast .
[(20111123)
nil "An emacs mode to find things fast and move around in a project quickly" tar])
(find-file-in-repository .
[(1 3)
nil "Quickly find files in a git, mercurial or other repository" single])
(find-file-in-project .
[(3 3)
nil "Find files in a project quickly." single])
(find-file-in-git-repo .
[(0 1 2)
nil "Utility to find files in a git repo" single])
(finalize .
[(1 0 0)
((emacs
(24 1))
(cl-lib
(0 3))
(eieio
(1 4)))
"finalizers for Emacs Lisp" tar])
(fill-column-indicator .
[(1 87)
nil "Graphically indicate the fill column" single])
(file-format .
[(0 0 4)
((s
(1 5 0)))
"templates with files as the source" single])
(fic-ext-mode .
[(0 1)
nil "Show FIXME/TODO/BUG(...) in special face only in comments and strings" single])
(feature-mode .
[(0 4)
nil "Major mode for editing Gherkin (i.e. Cucumber) user stories" tar])
(fastnav .
[(1 0 7)
nil "Fast navigation and editing routines." single])
(fancy-mode .
[(0 1)
nil "Major mode for programming with the Fancy language." single])
(fancy-battery .
[(0 2)
((emacs
(24 1)))
"Fancy battery display" single])
(fakir .
[(0 1 9)
((noflet
(0 0 8))
(dash
(1 3 2))
(kv
(0 0 19)))
"fakeing bits of Emacs" single])
(f .
[(0 11 0)
((s
(1 7 0))
(dash
(2 2 0)))
"Modern API for working with files and directories" single])
(eyebrowse .
[(0 7 4)
((dash
(2 7 0))
(emacs
(24 3 1)))
"Easy window config switching" single])
(extend-dnd .
[(0 5)
nil "R drag and Drop" single])
(express .
[(0 6 0)
((string-utils
(0 3 2)))
"Alternatives to `message'" single])
(expectations-mode .
[(0 0 5)
((cider
(0 7 0)))
"Minor mode for expectations tests" single])
(expand-region .
[(0 10 0)
nil "Increase selected region by semantic units." tar])
(exercism .
[(0 0 1)
nil "An Emacs mode for submitting current file to exercism.io" single])
(exec-path-from-shell .
[(1 7)
nil "Get environment variables such as $PATH from the shell" single])
(evil-paredit .
[(0 0 1)
((evil
(0 0 0))
(paredit
(1)))
"Paredit support for evil keybindings" single])
(evil-numbers .
[(0 4)
nil "increment/decrement numbers like in vim" single])
(evil-nerd-commenter .
[(1 3 1)
nil "Comment/uncomment lines efficiently. Like Nerd Commenter in Vim" tar])
(evil-matchit .
[(1 3 0)
nil "Vim matchit ported into Emacs (requires EVIL)" tar])
(evil-leader .
[(0 4 3)
((evil
(0)))
"let there be <leader>" single])
(evil-indent-textobject .
[(0 2)
((evil
(0)))
"evil textobjects based on indentation" single])
(evil-escape .
[(2 11)
((emacs
(24))
(evil
(1 0 9)))
"Escape from anything with a customizable key sequence" single])
(evil .
[(1 0 8)
((undo-tree
(0 6 3))
(goto-last-change
(1 2)))
"Extensible Vi layer for Emacs." tar])
(everything .
[(0 1 5)
nil "Bridge to MS Windows desktop-search engine Everything" single])
(evernote-mode .
[(0 41)
nil "Evernote client for Emacs" tar])
(etags-table .
[(1 1)
nil "Set tags table(s) based on current file" single])
(etags-select .
[(1 13)
nil "Select from multiple tags" single])
(esxml .
[(0 3 0)
((db
(0 0 1)))
"Handle HTML with lists." tar])
(ess-smart-underscore .
[(0 79)
nil "Ess Smart Underscore" single])
(ess-R-object-popup .
[(0 0 6)
nil "popup description of R object" single])
(ess .
[(5 14)
nil "Edit and interact with statistical programs like R, S-Plus, SAS, Stata and JAGS" tar])
(esk .
[(0 1)
nil "Emacs Search Kit - An easy way to find files and/or strings in a project" tar])
(eshell-manual .
[(20141024)
nil "An manual for Eshell." tar])
(eshell-fringe-status .
[(1 0 0)
nil "Show last status in fringe" single])
(es-windows .
[(0 2)
((cl-lib
(0 3))
(emacs
(24)))
"Window-management utilities" single])
(eruby-mode .
[(1 20151111)
nil "minor mode for eRuby (.erb) template files" single])
(ertx .
[(0 0 2)
nil "Extra useful testing functions for EmacsLisp." single])
(ert-x .
[(0)
((ert
(0)))
"Staging area for experimental extensions to ERT" single])
(ert .
[(0)
nil "Emacs Lisp Regression Testing" single])
(erlang .
[(2 4 1)
nil "Major modes for editing and running Erlang" single])
(erefactor .
[(0 6 10)
nil "Emacs-Lisp refactoring utilities" single])
(eredis .
[(0 5 0)
nil "eredis, a Redis client in emacs lisp" single])
(ercn .
[(1 0 2)
nil "Flexible ERC notifications" single])
(erc-nick-notify .
[(0 2 1)
nil "Notify popup for ERC" single])
(erc-hl-nicks .
[(1 3 2)
nil "ERC nick highlighter that ignores uniquifying chars when colorizing" single])
(eprime-mode .
[(1 1 2)
nil "An E-prime checking mode for Emacs" single])
(epl .
[(0 8)
((cl-lib
(0 3)))
"Emacs Package Library" single])
(env-var-import .
[(2 1)
nil "Import shell environment variables in GUI Emacs" single])
(enclose .
[(0 0 2)
nil "Enclose cursor within punctuation pairs" single])
(emstar .
[(1 4)
nil "Casual game, like a brainy Pac-Man" tar])
(emms-mark-ext .
[(0 3)
((emms
(3 0)))
"Extra functions for emms-mark-mode and emms-tag-edit-mode" single])
(emmet-mode .
[(1 0 10)
nil "Unofficial Emmet's support for emacs" single])
(emamux .
[(0 1)
nil "Interact with tmux" single])
(emacsd-tile .
[(0 1)
nil "tiling windows for emacs" single])
(emacs-xkcd .
[(1 0)
((json
(1 4)))
"View xkcd from Emacs" single])
(emacs-sounds .
[(20161211 1530)
((sound-wav
(20160725 724)))
"Sound effects for Emacs" single])
(emacs-home .
[(20170911 1835)
((emacs
(24))
(cl-lib
(0 5)))
"A home-screen for Emacs" single])
(emacs-droid .
[(0 0 0)
nil "Android application development tools for Emacs" single])
(emacs-daily-events .
[(20170911 2235)
((emacs
(24))
(cl-lib
(0 5))
(emacs-visual-notifications
(20170908 2035)))
"An Emacs package to notify you on specified daily occurring events" single])
(emacs-cl .
[(0 5)
nil "Emacs Common Lisp" tar])
(elscreen .
[(1 4 6)
nil "Screen for Emacsen" single])
(elpy .
[(1 8 0)
((company
(0 8 2))
(find-file-in-project
(3 3))
(highlight-indentation
(0 5 0))
(pyvenv
(1 3))
(yasnippet
(0 8 0)))
"Emacs Python Development Environment" tar])
(elpakit .
[(2 0 4)
((dash
(2 9 0))
(shadchen
(1 2))
(noflet
(0 0 14))
(s
(1 9 0)))
"The ELPA package maintainer's friend" tar])
(elpa-mirror .
[(1 1 2)
nil "ELPA mirror from locally installed packages is easy" tar])
(elpa-audit .
[(0 4)
nil "Handy functions for inspecting and comparing package archives" single])
(elnode .
[(0 9 9 8 8)
((web
(0 4 3))
(dash
(2 9 0))
(noflet
(0 0 14))
(s
(1 5 0))
(creole
(1 0 6))
(fakir
(0 1 9))
(db
(0 0 6))
(kv
(0 0 19)))
"The Emacs webserver." tar])
(elixir-mode .
[(1 0 0)
nil "Major mode for editing Elixir files" single])
(elixir-mix .
[(1 0 0)
nil "Emacs integration for Elixir's mix" single])
(elisp-slime-nav .
[(0 7)
((cl-lib
(0 2)))
"Make M-. and M-, work in elisp like they do in slime" single])
(elisp-indexer .
[(0 0 9)
nil "indexing utils for emacslisp" single])
(elisp-depend .
[(1 0 2)
nil "Parse depend libraries of elisp file." single])
(elisp-cache .
[(1 15)
nil "Faster emacs startup through byte-compiling." single])
(elfeed-web .
[(2 2 0)
((simple-httpd
(1 4 3))
(elfeed
(1 4 0))
(emacs
(24 1)))
"web interface to Elfeed" tar])
(elfeed .
[(2 2 0)
((emacs
(24 3)))
"an Emacs Atom/RSS feed reader" tar])
(elein .
[(0 2 2)
nil "running leiningen commands from emacs" single])
(electric-case .
[(2 2 1)
nil "insert camelCase, snake_case words without \"Shift\"ing" single])
(eldoro .
[(0 1 0)
nil "A pomodoro timer/tracker that works with org-mode." tar])
(el-x .
[(0 3 0)
((cl-lib
(0 2)))
"Emacs-lisp extensions." tar])
(el-swank-fuzzy .
[(0 1)
nil "fuzzy symbol completion." single])
(el-spec .
[(0 2)
nil "ruby's rspec like syntax test frame work" single])
(el-init .
[(20130416)
nil "Loader for configuration files" tar])
(el-autoyas .
[(0 20)
nil "Automatically create Emacs-Lisp Yasnippets" single])
(eimp .
[(1 4 0)
nil "Emacs Image Manipulation Package" single])
(eieio .
[(1 4)
nil "Enhanced Implementation of Emacs Interpreted Objects" single])
(eh-keybindings .
[(0 0 1)
((eh-functions
(0 0 1))
(starter-kit-bindings
(2 0 2)))
"tuamshu's emacs keybindings" tar])
(eh-gnus .
[(0 0 6)
nil "tuamshu's gnus configure" tar])
(eh-functions .
[(0 0 1)
((starter-kit
(2 0 2)))
"tuamshu's emacs functions" tar])
(eh-common .
[(0 0 1)
nil "Tumashu's emacs functions" single])
(eh-basic .
[(0 0 2)
((starter-kit
(2 0 2))
(browse-kill-ring
(1 3 1)))
"tuamshu's emacs basic configure" tar])
(egison-mode .
[(0 1 4)
nil "Egison editing mode" single])
(editorconfig .
[(0 4)
nil "EditorConfig Emacs extension" single])
(edit-list .
[(0 4)
nil "edit a single list" single])
(edebug-x .
[(1 2)
((dash
(1 1 0)))
"Extensions for Edebug" single])
(ecb-snapshot .
[(20120830)
nil "Emacs Code Browser CVS snapshot" tar])
(ecb .
[(2 40)
nil "Emacs Code Browser" tar])
(eagle-eye .
[(20170823 2205)
nil "A utility to zoom-in and zoom-out while editing text" single])
(dynamic-fonts .
[(0 6 4)
((font-utils
(0 7 0))
(persistent-soft
(0 8 8))
(pcache
(0 2 3)))
"Set faces based on available fonts" single])
(dxr .
[(2 2)
nil "Convenient access to a DXR server" single])
(durendal .
[(0 2)
((clojure-mode
(1 7))
(slime
(20100404))
(paredit
(22)))
"A bucket of tricks for Clojure and Slime." single])
(dummy-package .
[(0 0 25)
((timeclock
(2 6 1)))
"a fake package for the marmalade test suite" single])
(dtrt-indent .
[(0 2 0)
nil "Adapt to foreign indentation offsets" single])
(dsvn .
[(922257)
nil "Subversion interface" single])
(drupal-spell .
[(0 2 2)
nil "Aspell extra dictionary for Drupal" tar])
(drupal-mode .
[(0 7 1)
((php-mode
(1 5 0)))
"Advanced minor mode for Drupal development" tar])
(dropbox .
[(0 9 1)
((json
(1 2))
(oauth
(1 0 3)))
"Emacs backend for dropbox" single])
(drag-stuff .
[(0 0 4)
nil "Drag stuff (lines, words, region, etc...) around" single])
(dpaste .
[(0 2)
nil "Emacs integration for dpaste.com" single])
(downplay-mode .
[(0 1)
nil "focus attention on a region of the buffer" single])
(dotassoc .
[(0 0 1)
nil "dot access embedded alists" single])
(dot-mode .
[(1 12)
nil "minor mode to repeat typing or commands" single])
(doctags .
[(0 1)
nil "Generation of tags documentation in Doxygen syntax" single])
(dockerfile-mode .
[(0 1)
nil "Major mode for editing Docker's Dockerfiles" single])
(dna-mode .
[(1 44)
nil "a major mode for editing dna sequences" single])
(django-theme .
[(1 3 0)
nil "Custom face theme for Emacs" single])
(dizzee .
[(0 1 1)
nil "A more pleasant way to manage your project's subprocesses in Emacs." tar])
(dix .
[(0 1 0)
nil "minor mode for editing Apertium XML dictionary files" single])
(dispass .
[(1 1 2)
nil "Emacs wrapper for DisPass" single])
(discord .
[(0 5)
nil "Discordian dates for calendar" single])
(dirtrack-buffer-name-track-mode .
[(1 0 0)
nil "minor mode to cause shell buffers to reflect the working directory" single])
(dired-single .
[(1 7)
nil "reuse the current dired buffer to visit another directory" single])
(dired-nav-enhance .
[(1 0)
nil "Enhanced navigation for dired buffers" single])
(dired-efap .
[(0 8)
nil "Edit Filename At Point in a dired buffer" single])
(dired-dups .
[(0 3)
nil "Find duplicate files and display them in a dired buffer" single])
(dired-details .
[(1 3 1)
nil "make file details hide-able in dired" single])
(dircmp .
[(1)
nil "Compare and sync directories." single])
(diminish .
[(0 44)
nil "Diminished modes are minor modes with no modeline display" single])
(diatheke .
[(1 0)
nil "A minor mode using the diatheke command-line Bible tool" single])
(desktop-registry .
[(1 2 0)
nil "Keep a central registry of desktop files" single])
(desktop .
[(0 1)
nil "save partial status of Emacs when killed" single])
(descbinds-anything .
[(1 5)
((anything
(1 287)))
"Yet Another `describe-bindings' with `anything'." single])
(demo-multifile .
[(0 0 2)
nil "a demo multifile package." tar])
(deft .
[(0 3)
nil "quickly browse, filter, and edit plain text notes" single])
(deep-thought-theme .
[(0 1 1)
nil "Emacs 24 theme with the Answer to The Ultimate Question" single])
(dedicated .
[(1 0 0)
nil "A very simple minor mode for dedicated buffers" single])
(debian-changelog-mode .
[(1 96)
nil "major mode for Debian changelog files." single])
(db-pg .
[(0 0 3)
((pg
(0 12))
(db
(0 0 6)))
"A PostgreSQL adapter for emacs-db" single])
(db .
[(0 0 7)
((kv
(0 0 19)))
"A database for EmacsLisp" single])
(dash-functional .
[(1 2 0)
((dash
(2 0 0))
(emacs
(24)))
"Collection of useful combinators for Emacs Lisp" single])
(dash .
[(2 11 0)
nil "A modern list library for Emacs" single])
(dart-mode .
[(0 14)
((cl-lib
(0 5))
(dash
(2 10 0))
(flycheck
(0 23)))
"Major mode for editing Dart files" single])
(d-mode .
[(2 0 4)
nil "D Programming Language mode for (X)Emacs" tar])
(cygwin-mount .
[(2001)
nil "Teach EMACS about cygwin styles and mount points." single])
(cycbuf .
[(0 5 0)
nil "Cycle buffers code by Martin Pohlack, inspired by" single])
(cursor-chg .
[(20 1)
nil "Change cursor dynamically, depending on the context." single])
(current-story .
[(0 1 0)
nil "Track and insert current Pivotal Tracker" single])
(curl-for-url .
[(0 0 2)
((noflet
(0 0 15)))
"use url-retrieve with curl doing the work" single])
(cups .
[(0 1)
nil "CUPS features for Emacs" single])
(cubicle-mode .
[(0 1)
nil "Cubicle major mode for emacs" single])
(ctypes .
[(1 2)
nil "Enhanced Font lock support for custom defined types." single])
(ctags-update .
[(0 1 2)
nil "auto update TAGS in parent directory using exuberant-ctags" single])
(ctags .
[(1 1 1)
nil "Exuberant Ctags utilities for Emacs" single])
(csharp-mode .
[(0 9 0)
((cl-lib
(0 5)))
"C# mode derived mode" tar])
(cryptol-mode .
[(0 1 0)
nil "Cryptol major mode for Emacs" single])
(crosshairs .
[(22 0)
nil "Highlight the current line and column." single])
(crontab-mode .
[(1 2)
nil "Mode for editing crontab files" single])
(creole-mode .
[(0 0 5)
nil "a markup mode for creole" single])
(creole .
[(1 0 6)
((noflet
(0 0 3))
(kv
(0 0 17)))
"A parser for the Creole Wiki language" single])
(creds .
[(0 0 6 1)
((s
(1 9 0))
(dash
(2 5 0)))
"A parser credentials file library (not limited to credentials entries)" tar])
(cpputils-cmake .
[(0 4 8)
nil "Easy real time C++ syntax check and intellisense if you use CMake" tar])
(cppcheck .
[(1 0)
nil "run cppcheck putting hits in a grep buffer" single])
(cparen .
[(1 0)
nil "coloured parentheses in Lisp-derived modes" single])
(control-lock .
[(1 1 2)
nil "Like caps-lock, but for your control key. Give your pinky a rest!" single])
(confluence .
[(1 6)
((xml-rpc
(1 6 7)))
"Confluence major mode" tar])
(config-block .
[(0 0 1)
nil "config-block is utility for individual settings (e.g. .emacs)." single])
(company-inf-ruby .
[(0 2)
((company
(0 6 10))
(inf-ruby
(2 2 7)))
"company-mode completion back-end for inf-ruby" single])
(company-cmake .
[(0 1)
((company
(0 6 8)))
"company-mode completion back-end for CMake" single])
(common-header-mode-line .
[(0 5 6)
nil "Manage per-frame and per-window header- and mode- lines." tar])
(command-t .
[(0 0 1)
((find-file-in-project
(3 2))
(popwin
(0 4)))
"Finds file in project using fuzzy search." single])
(command-stats .
[(0 1)
nil "Track frequency of commands executed in emacs" single])
(command-frequency .
[(1 1)
nil "Track command frequencies" single])
(comint-better-defaults .
[(1 0)
nil "better defaults for comint-derived modes" single])
(combinators .
[(0 0 1)
nil "" single])
(colour-region .
[(0 4)
nil "Toggle regions of the buffer with different text snippets" single])
(color-theme-zenburn .
[(0 3)
((color-theme
(6 6 1)))
"A low contrast color theme for Emacs." single])
(color-theme-x .
[(1 3)
nil "convert color themes to X11 resource settings" single])
(color-theme-wombat .
[(0 0 1)
((color-theme
(6 6 1)))
"The wombat color theme for Emacs." single])
(color-theme-vim-insert-mode .
[(0 1)
nil "Color theme VIM insert mode" single])
(color-theme-twilight .
[(0 1)
nil "Twilight Colour Theme for Emacs." single])
(color-theme-tangotango .
[(0 0 2)
((color-theme
(6 6 1)))
"Tango Palette color theme for Emacs." single])
(color-theme-tango .
[(0 0 2)
((color-theme
(6 6 1)))
"Tango palette color theme for GNU Emacs." single])
(color-theme-solarized .
[(20120301)
nil "Solarized themes for Emacs" tar])
(color-theme-sanityinc-tomorrow .
[(1 10)
nil "A version of Chris Kempson's various Tomorrow themes" tar])
(color-theme-sanityinc-solarized .
[(2 25)
nil "A version of Ethan Schoonover's Solarized themes" tar])
(color-theme-railscasts .
[(0 0 2)
((color-theme
(6 6 1)))
"Railscasts color theme for GNU Emacs." single])
(color-theme-monokai .
[(0 0 5)
((color-theme
(6 5 5)))
"Monokai Color Theme for Emacs." single])
(color-theme-molokai .
[(0 1)
nil "Molokai color theme by Lloyd" single])
(color-theme-library .
[(0 0 10)
((color-theme
(6 6 1)))
"The real color theme functions" single])
(color-theme-ir-black .
[(1 0 1)
((color-theme
(6 6 1)))
"pastel color theme" single])
(color-theme-heroku .
[(1 0 0)
nil "Heroku color theme" single])
(color-theme-gruber-darker .
[(1)
((color-theme
(6 6 1)))
"Gruber Darker color theme for Emacs by Jason Blevins" single])
(color-theme-github .
[(0 0 3)
((color-theme
(6 6 1)))
"Github color theme for GNU Emacs." single])
(color-theme-emacs-revert-theme .
[(0 1)
nil "Color-theme revert to emacs colors" single])
(color-theme-eclipse .
[(0 0 2)
((color-theme
(6 6 1)))
"Eclipse color theme for GNU Emacs." single])
(color-theme-dpaste .
[(0 0 1)
((color-theme
(6 6 1)))
"Dpaste color theme for GNU Emacs." single])
(color-theme-dg .
[(0 1 0)
((color-theme
(6 6 0)))
"A black and green color theme for Emacs." single])
(color-theme-complexity .
[(0 1 1)
((color-theme
(6 6 0)))
"A black and green color theme for Emacs." single])
(color-theme-cobalt .
[(0 0 2)
((color-theme
(6 6 1)))
"Cobalt Color Theme for Emacs" single])
(color-theme-buffer-local .
[(0 0 2)
nil "Install color-themes by buffer." single])
(color-theme-actress .
[(0 2 2)
((color-theme
(6 6 1)))
"A dark color theme for GNU Emacs." single])
(color-theme .
[(6 6 1)
nil "install color themes" single])
(color-file-completion .
[(1 0 1)
nil "add colors to file completion" single])
(col-highlight .
[(22 0)
((vline
(1 10)))
"Highlight the current column." single])
(coffee-mode .
[(0 3 0)
nil "Major mode to edit CoffeeScript files in Emacs" single])
(code-headers .
[(0 7)
nil "Navigate code with headers embedded in comments. -*- mode: Emacs-Lisp; lexical-binding: t; -*" single])
(cobra-mode .
[(1 0 1)
nil "Major mode for .NET-based Cobra language" single])
(cmuclojure .
[(0 2)
nil "Clojure process in a buffer" single])
(cmake-project .
[(0 7)
nil "Integrates CMake build process with Emacs" single])
(cmake-mode .
[(20110824)
nil "Major mode for editing CMake sources." single])
(cm-mode .
[(0 1 0)
nil "Wrapper for CodeMirror-style Emacs modes" single])
(clues-theme .
[(20130908 801)
((emacs
(24 0)))
"an Emacs 24 theme which may well be fully awesome..." single])
(cloud-to-butt-erc .
[(1 0 0)
nil "Replace 'the cloud' with 'my butt'" single])
(closure-template-html-mode .
[(0 1)
nil "highlighting for google closure templates" single])
(closure-lint-mode .
[(0 1)
nil "minor mode for the Closure Linter" single])
(clojurescript-mode .
[(0 5)
nil "Major mode for ClojureScript code" single])
(clojure-project-mode .
[(1 0)
((project-mode
(1 0)))
"Extends project-mode for Clojure projects" single])
(clojure-project .
[(1 0)
((project-mode
(1 0)))
"Extends project-mode for Clojure projects" single])
(clojure-mode-extra-font-locking .
[(3 0 0)
((clojure-mode
(3 0)))
"Extra font-locking for Clojure mode" single])
(clojure-mode .
[(4 0 1)
((emacs
(24 1)))
"Major mode for Clojure code" single])
(clojure-here .
[(0 11)
nil "Clojure process in a buffer" single])
(clojure-env .
[(0 0 4)
nil "manage clojure environments with Emacs" single])
(cljsbuild-mode .
[(0 2 0)
nil "A minor mode for the ClojureScript 'lein cljsbuild' command" single])
(cljdoc .
[(0 1 0)
nil "eldoc mode for clojure" single])
(clj-refactor .
[(1 1 0)
((emacs
(24 3))
(s
(1 8 0))
(dash
(2 4 0))
(yasnippet
(0 6 1))
(paredit
(24))
(multiple-cursors
(1 2 2))
(cider
(0 9 1))
(edn
(1 1 1)))
"A collection of clojure refactoring functions" single])
(clj-mode .
[(0 9)
nil "basic Major mode (clj) for Clojure code" single])
(clips-mode .
[(0 7)
nil "Major mode for editing CLIPS code and REPL" tar])
(cl-lib-highlight .
[(1 0 0)
((cl-lib
(0 3)))
"full cl-lib font-lock highlighting" single])
(cl-format .
[(1 1)
nil "CL format routine." tar])
(citrus-mode .
[(0 0 2)
nil "Major mode for editing Citrus files" single])
(circe .
[(1 6)
((lui
(1 6))
(lcs
(1 1)))
"Client for IRC in Emacs" tar])
(cider .
[(0 8 2)
((clojure-mode
(3 0 0))
(cl-lib
(0 5))
(dash
(2 4 1))
(pkg-info
(0 4))
(emacs
(24))
(queue
(0 1 1)))
"Clojure Integrated Development Environment and REPL" tar])
(chm-view .
[(0 2 2)
nil "View CHM file." single])
(chicken-scheme .
[(1 3 0)
nil "Scheme-mode extensions for Chicken Scheme" single])
(checkbox .
[(0 2 1)
((emacs
(24))
(cl-lib
(0 5)))
"Quick manipulation of textual checkboxes" single])
(charmap .
[(0 0 1)
nil "Unicode table for Emacs" single])
(centered-cursor-mode .
[(0 5 1)
nil "cursor stays vertically centered" single])
(center-text .
[(0 8)
nil "Center the text in a fixed-width column" single])
(celery .
[(0 0 3)
((emacs
(24))
(dash-functional
(2 11 0))
(s
(1 9 0))
(deferred
(0 3 2)))
"a minor mode to draw stats from celery and more?" single])
(cedit .
[(0 0 0)
nil "paredit-like commands for c-like languages" single])
(cdlatex .
[(4 0)
nil "Fast input methods for LaTeX environments and math" single])
(caml .
[(3 12 0 1)
nil "OCaml code editing commands for Emacs" tar])
(calfw-gcal .
[(0 0 3)
nil "edit Google calendar for calfw.el." single])
(cache .
[(0 1)
nil "implementation of a hash table whose key-value pairs expire" single])
(c-eldoc .
[(0 7)
nil "helpful description of the arguments to C functions" single])
(button-lock .
[(1 0 2)
nil "Clickable text defined by regular expression" single])
(buttercup .
[(1 1)
nil "Behavior-Driven Emacs Lisp Testing" tar])
(butler .
[(0 2 0)
((deferred
(3 1))
(json
(1 2)))
"Emacs client for Jenkins" tar])
(bug-reference-github .
[(0 2 0)
nil "Automatically set `bug-reference-url-format' in Github repositories." single])
(bufshow .
[(0 1 0)
nil "A simple presentation tool for Emacs." tar])
(buffer-utils .
[(0 1 0)
nil "Buffer-manipulation utility functions" single])
(buffer-stack .
[(1 5)
nil "Enhanced intelligent switch-to-other-buffer replacement." single])
(buffer-move .
[(0 6 1)
nil "" single])
(buffer-file-utils .
[(1 0)
nil "utilities operating on a buffer and the associated file" single])
(buffer-extension .
[(0 1)
nil "Some enhanced functions for buffer manipulate." single])
(bubbleberry-theme .
[(0 1 2)
((emacs
(24 1)))
"A theme based on LightTable for Emacs24" single])
(bs-ext .
[(0 2)
nil "Extensions to emacs buffer-selection library (bs.el)" single])
(browse-url-dwim .
[(0 6 6)
((string-utils
(0 3 2)))
"Context-sensitive external browse URL or Internet search" single])
(browse-kill-ring .
[(2 0 0)
nil "interactively insert items from kill-ring" single])
(boxquote .
[(1 23)
nil "Quote text with a semi-box." single])
(bm .
[(1 53)
nil "Visible bookmarks in buffer." single])
(bitly .
[(1 0)
nil "Shorten URLs using the bitly.com shortener service" single])
(bitlbee .
[(1 0)
nil "Help get Bitlbee (http://www.bitlbee.org) up and running" single])
(bigint .
[(1 0 0)
nil "A simple bigint package for emacs" single])
(better-defaults .
[(0 1 2)
nil "Fixing weird quirks and poor defaults" single])
(bert .
[(0 1)
nil "BERT serialization library for Emacs" single])
(bbdb2erc .
[(0 1 0)
nil "make bbdb show if pal is online with ERC, click i to chat" single])
(bbdb-ext .
[(0 1)
((bbdb
(2 36)))
"Extra commands for BBDB" single])
(bbcode-mode .
[(1 1 0)
nil "Major mode for writing BBCode markup" single])
(batch-mode .
[(1 0)
nil "major mode for editing ESRI batch scrips" single])
(bar-cursor .
[(1 1)
nil "package used to switch block cursor to a bar" single])
(bang .
[(0 1 0)
nil "A modern list library for Emacs" single])
(backtrace-mode .
[(0 0 10)
nil "A better way to browse /var/log/messages files" single])
(back-button .
[(0 6 6)
((nav-flash
(1 0 0))
(smartrep
(0 0 3))
(ucs-utils
(0 7 2))
(persistent-soft
(0 8 8))
(pcache
(0 2 3)))
"Visual navigation through mark rings" single])
(babcore .
[(0 0 5)
nil "Core Emacs configuration. This should be the minimum in every emacs config." single])
(awk-it .
[(0 77)
nil "Run AWK interactively on region!" single])
(autopair .
[(0 3)
nil "Automagically pair braces and quotes like TextMate" single])
(auto-indent-mode .
[(0 126)
nil "Auto indent Minor mode" single])
(auto-highlight-symbol .
[(1 55)
nil "Automatic highlighting current symbol minor mode" single])
(auto-complete-verilog .
[(0 0)
nil "Verukig" single])
(auto-complete-octave .
[(0 1)
nil "Auto-complete for Octave" single])
(auto-complete-etags .
[(0 2)
((auto-complete
(1 3)))
"Auto-complete etags" single])
(auto-complete .
[(1 4)
((popup
(0 5)))
"Auto Completion for GNU Emacs" tar])
(async .
[(1 5)
nil "Asynchronous processing in Emacs" tar])
(assemblage-theme .
[(20130715 621)
nil "a dark theme for Emacs 24" single])
(ascii .
[(3 1)
nil "ASCII code display." single])
(ariadne .
[(0 1)
((bert
(0 1)))
"Ariadne plugin for Emacs" single])
(apt-utils-ido .
[(0 2)
((apt-utils
(1 212)))
"Ido commands for apt-utils" single])
(apt-utils .
[(1 212)
nil "Emacs interface to APT (Debian package management)" single])
(applescript-mode .
[(1 1)
nil "major mode for editing AppleScript source" single])
(apache-mode .
[(2 0)
nil "major mode for editing Apache configuration files" single])
(aok .
[(0 1)
nil "various useful ways to do `multi-occur'" single])
(anzu .
[(0 22)
nil "Show number of matches in mode-line while searching" single])
(ansible-doc .
[(0 3)
((emacs
(24 1)))
"Ansible documentation Minor Mode" single])
(annotate .
[(0 4 7)
nil "annotate files without changing them" single])
(angular-snippets .
[(0 2 3)
((s
(1 4 0))
(dash
(1 2 0)))
"Yasnippets for AngularJS" tar])
(android-mode .
[(0 4 0)
nil "Minor mode for Android application development" single])
(anaphora .
[(1 0 0)
nil "anaphoric macros providing implicit temp variables" single])
(ample-zen-theme .
[(0 3)
nil "AmpleZen Theme for Emacs 24" single])
(ample-theme .
[(0 12)
((color-theme
(6 5 5)))
"Calm Dark Theme for Emacs" single])
(alpha .
[(1 0)
nil "increase frame transparency" single])
(align-cljlet .
[(0 3)
((clojure-mode
(1 11 5)))
"Space align various Clojure forms" single])
(alchemist .
[(1 5 0)
((elixir-mode
(2 2 5))
(dash
(2 11 0))
(emacs
(24 4))
(company
(0 8 0))
(pkg-info
(0 4)))
"Elixir tooling integration into Emacs" tar])
(ahg .
[(0 99)
nil "Alberto's Emacs interface for Mercurial (Hg)" single])
(ag .
[(0 42)
nil "A front-end for ag ('the silver searcher'), the C ack replacement." single])
(adoc-mode .
[(0 6 2)
((markup-faces
(1 0 0)))
"a major-mode for editing AsciiDoc files in Emacs" single])
(ack-and-a-half .
[(1 2 0)
nil "Yet another front-end for ack" single])
(ace-jump-mode .
[(2 0 0 0)
nil "a quick cursor location minor mode for emacs" single])
(ac-slime .
[(0 5)
nil "An auto-complete source using slime completions" single])
(ac-python .
[(20110519)
((auto-complete
(1 4)))
"Simple Python Completion Source for Auto-Complete" single])
(ac-nrepl .
[(0 21)
((cider
(0 1))
(auto-complete
(1 4)))
"auto-complete sources for Clojure using nrepl completions" single])
(ac-ja .
[(0 0 1)
nil "auto-complete-mode source for Japanese" single])
(ac-inf-ruby .
[(0 4)
((inf-ruby
(2 3 2))
(auto-complete
(1 4)))
"Enable auto-complete in inf-ruby sessions" single])
(ac-geiser .
[(0 1)
((geiser
(0 5))
(auto-complete
(1 4)))
"Auto-complete backend for geiser" tar])
(ac-cider .
[(0 2 0)
((cider
(0 8 0))
(auto-complete
(1 4))
(cl-lib
(0 3)))
"Clojure auto-complete sources using CIDER" single])
(ac-R .
[(0 2)
nil "Autocompletion routines for R" single])
(abl-mode .
[(0 9 0)
nil "Python TDD minor mode" single]))