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

Chizi123
2018-11-21 e75a20334813452c6912c090d70a0de2c805f94d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
(1
 (ace-window .
         [(0 9 0)
          ((avy
        (0 2 0)))
          "Quickly switch windows." single
          ((:url . "https://github.com/abo-abo/ace-window")
           (:keywords "window" "location"))])
 (ack .
      [(1 5)
       nil "interface to ack-like tools" tar
       ((:keywords "tools" "processes" "convenience")
    (:url . "https://github.com/leoliu/ack-el"))])
 (ada-mode .
       [(5 3 2)
        ((wisi
          (1 1 6))
         (cl-lib
          (0 4))
         (emacs
          (24 3)))
        "major-mode for editing Ada sources" tar
        ((:keywords "languages" "ada")
         (:url . "http://www.nongnu.org/ada-mode/"))])
 (ada-ref-man .
          [(2012 3)
           nil "Ada Reference Manual 2012" tar
           ((:keywords "languages" "ada")
        (:url . "http://stephe-leake.org/ada/arm.html"))])
 (adaptive-wrap .
        [(0 7)
         nil "Smart line-wrapping with wrap-prefix" single
         ((:url . "http://elpa.gnu.org/packages/adaptive-wrap.html")
          (:keywords))])
 (adjust-parens .
        [(3 0)
         nil "Indent and dedent Lisp code, automatically adjust close parens" tar
         ((:url . "http://elpa.gnu.org/packages/adjust-parens.html"))])
 (aggressive-indent .
            [(1 8 3)
             ((emacs
               (24 1))
              (cl-lib
               (0 5)))
             "Minor mode to aggressively keep your code always indented" single
             ((:url . "https://github.com/Malabarba/aggressive-indent-mode")
              (:keywords "indent" "lisp" "maint" "tools"))])
 (ahungry-theme .
        [(1 10 0)
         ((emacs
           (24)))
         "Ahungry color theme for Emacs.  Make sure to (load-theme 'ahungry)." tar
         ((:keywords "ahungry" "palette" "color" "theme" "emacs" "color-theme" "deftheme")
          (:url . "https://github.com/ahungry/color-theme-ahungry"))])
 (all .
      [(1 0)
       nil "Edit all lines matching a given regexp" single
       ((:url . "http://elpa.gnu.org/packages/all.html")
    (:keywords "matching"))])
 (ampc .
       [(0 2)
    nil "Asynchronous Music Player Controller" single
    ((:url . "http://elpa.gnu.org/packages/ampc.html")
     (:keywords "ampc" "mpc" "mpd"))])
 (arbitools .
        [(0 95)
         ((cl-lib
           (0 5)))
         "Package for chess tournaments administration" single
         ((:url . "http://elpa.gnu.org/packages/arbitools.html")
          (:keywords))])
 (ascii-art-to-unicode .
               [(1 12)
            nil "a small artist adjunct" single
            ((:url . "http://www.gnuvola.org/software/aa2u/")
             (:keywords "ascii" "unicode" "box-drawing"))])
 (async .
    [(1 9 2)
     nil "Asynchronous processing in Emacs" tar
     ((:keywords "async")
      (:url . "http://elpa.gnu.org/packages/async.html"))])
 (auctex .
     [(12 1 1)
      nil "Integrated environment for *TeX*" tar
      ((:url . "http://www.gnu.org/software/auctex/"))])
 (aumix-mode .
         [(7)
          nil "run the aumix program in a buffer" single
          ((:url . "http://user42.tuxfamily.org/aumix-mode/index.html")
           (:keywords "multimedia" "mixer" "aumix"))])
 (auto-correct .
           [(1 1 4)
        nil "Remembers and automatically fixes past corrections" single
        ((:url . "http://elpa.gnu.org/packages/auto-correct.html")
         (:keywords "editing"))])
 (auto-overlays .
        [(0 10 9)
         nil "Automatic regexp-delimited overlays" tar
         ((:keywords "extensions")
          (:url . "http://www.dr-qubit.org/emacs.php"))])
 (avy .
      [(0 4 0)
       ((emacs
     (24 1))
    (cl-lib
     (0 5)))
       "tree-based completion" tar
       ((:keywords "point" "location")
    (:url . "https://github.com/abo-abo/avy"))])
 (bbdb .
       [(3 2)
    ((emacs
      (24)))
    "core of BBDB" tar
    ((:url . "http://elpa.gnu.org/packages/bbdb.html"))])
 (beacon .
     [(1 3 3)
      ((seq
        (2 14)))
      "Highlight the cursor whenever the window scrolls" single
      ((:url . "https://github.com/Malabarba/beacon")
       (:keywords "convenience"))])
 (brief .
    [(5 87)
     nil "Brief Editor Emulator (Brief Mode)" tar
     ((:keywords "brief" "emulations" "crisp")
      (:url . "http://elpa.gnu.org/packages/brief.html"))])
 (bug-hunter .
         [(1 3 1)
          ((seq
        (1 3))
           (cl-lib
        (0 5)))
          "Hunt down errors by bisecting elisp files" single
          ((:url . "https://github.com/Malabarba/elisp-bug-hunter")
           (:keywords "lisp"))])
 (caps-lock .
        [(1 0)
         nil "Caps-lock as a minor mode" single
         ((:url . "http://elpa.gnu.org/packages/caps-lock.html")
          (:keywords))])
 (captain .
      [(1 0 3)
       nil "CAPiTalization is Automatic IN emacs" single
       ((:url . "http://elpa.gnu.org/packages/captain.html")
        (:keywords "editing"))])
 (chess .
    [(2 0 4)
     ((cl-lib
       (0 5)))
     "Play chess in GNU Emacs" tar
     ((:keywords "games")
      (:url . "http://elpa.gnu.org/packages/chess.html"))])
 (cl-generic .
         [(0 3)
          nil "Forward cl-generic compatibility for Emacs<25" single
          ((:url . "http://elpa.gnu.org/packages/cl-generic.html")
           (:keywords))])
 (cl-lib .
     [(0 6 1)
      nil "Properly prefixed CL functions and macros" single
      ((:url . "http://elpa.gnu.org/packages/cl-lib.html")
       (:keywords))])
 (cl-print .
       [(1 0)
        ((emacs
          (25)))
        "CL-style generic printing" single
        ((:url . "http://elpa.gnu.org/packages/cl-print.html")
         (:keywords))])
 (cobol-mode .
         [(1 0 0)
          ((cl-lib
        (0 5)))
          "Mode for editing COBOL code" single
          ((:url . "http://elpa.gnu.org/packages/cobol-mode.html")
           (:keywords "languages"))])
 (coffee-mode .
          [(0 4 1 1)
           nil "Major mode for CoffeeScript files" single
           ((:url . "http://github.com/defunkt/coffee-mode")
        (:keywords "coffeescript" "major" "mode"))])
 (compact-docstrings .
             [(0 1)
              nil "Shrink blank lines in docstrings and doc comments" single
              ((:url . "https://github.com/cpitclaudel/compact-docstrings")
               (:keywords "convenience" "faces" "lisp" "maint" "c"))])
 (company .
      [(0 9 7)
       ((emacs
         (24 3)))
       "Modular text completion framework" tar
       ((:keywords "abbrev" "convenience" "matching")
        (:url . "http://company-mode.github.io/"))])
 (company-ebdb .
           [(1)
        ((company
          (0 9 4))
         (ebdb
          (0 2)))
        "company-mode completion backend for EBDB in message-mode" single
        ((:url . "http://elpa.gnu.org/packages/company-ebdb.html")
         (:keywords))])
 (company-math .
           [(1 1)
        ((company
          (0 8 0))
         (math-symbol-lists
          (1 0)))
        "Completion backends for unicode math symbols and latex tags" tar
        ((:keywords "unicode" "symbols" "completion")
         (:url . "https://github.com/vspinu/company-math"))])
 (company-statistics .
             [(0 2 3)
              ((emacs
            (24 3))
               (company
            (0 8 5)))
              "Sort candidates using completion history" tar
              ((:keywords "abbrev" "convenience" "matching")
               (:url . "https://github.com/company-mode/company-statistics"))])
 (context-coloring .
           [(8 1 0)
            ((emacs
              (24 3)))
            "Highlight by scope" tar
            ((:keywords "convenience" "faces" "tools")
             (:url . "https://github.com/jacksonrayhamilton/context-coloring"))])
 (counsel-ebdb .
           [(1)
        ((ivy
          (0 8 0))
         (ebdb
          (0 2)))
        "Counsel integration for EBDB" single
        ((:url . "http://elpa.gnu.org/packages/counsel-ebdb.html")
         (:keywords))])
 (crisp .
    [(1 3 6)
     nil "CRiSP/Brief Emacs emulator" single
     ((:url . "http://elpa.gnu.org/packages/crisp.html")
      (:keywords "emulations" "brief" "crisp"))])
 (csv-mode .
       [(1 7)
        nil "Major mode for editing comma/char separated values" single
        ((:url . "http://elpa.gnu.org/packages/csv-mode.html")
         (:keywords "convenience"))])
 (cycle-quotes .
           [(0 1)
        nil "Cycle between quote styles" tar
        ((:keywords "convenience")
         (:url . "http://elpa.gnu.org/packages/cycle-quotes.html"))])
 (darkroom .
       [(0 1)
        ((cl-lib
          (0 5)))
        "Remove visual distractions and focus on writing" single
        ((:url . "http://elpa.gnu.org/packages/darkroom.html")
         (:keywords "convenience" "emulations"))])
 (dash .
       [(2 12 0)
    nil "A modern list library for Emacs" tar
    ((:keywords "lists")
     (:url . "http://elpa.gnu.org/packages/dash.html"))])
 (dbus-codegen .
           [(0 1)
        ((cl-lib
          (0 5)))
        "Lisp code generation for D-Bus." single
        ((:url . "http://elpa.gnu.org/packages/dbus-codegen.html")
         (:keywords "comm" "dbus" "convenience"))])
 (debbugs .
      [(0 16)
       ((soap-client
         (3 1 5))
        (cl-lib
         (0 5)))
       "SOAP library to access debbugs servers" tar
       ((:keywords "comm" "hypermedia")
        (:url . "http://elpa.gnu.org/packages/debbugs.html"))])
 (delight .
      [(1 5)
       nil "A dimmer switch for your lighter text." single
       ((:url . "https://savannah.nongnu.org/projects/delight")
        (:keywords "convenience"))])
 (dict-tree .
        [(0 14)
         ((trie
           (0 3))
          (tNFA
           (0 1 1))
          (heap
           (0 3)))
         "Dictionary data structure" single
         ((:url . "http://www.dr-qubit.org/emacs.php")
          (:keywords "extensions" "matching" "data structures trie" "tree" "dictionary" "completion" "regexp"))])
 (diff-hl .
      [(1 8 4)
       ((cl-lib
         (0 2)))
       "Highlight uncommitted changes using VC" tar
       ((:keywords "vc" "diff")
        (:url . "https://github.com/dgutov/diff-hl"))])
 (diffview .
       [(1 0)
        nil "View diffs in side-by-side format" single
        ((:url . "https://github.com/mgalgs/diffview-mode")
         (:keywords "convenience" "diff"))])
 (dired-du .
       [(0 5 1)
        ((emacs
          (24 4))
         (cl-lib
          (0 5)))
        "Dired with recursive directory sizes" tar
        ((:keywords "files" "unix" "convenience")
         (:url . "http://elpa.gnu.org/packages/dired-du.html"))])
 (dismal .
     [(1 5)
      ((cl-lib
        (0)))
      "Dis Mode Ain't Lotus: Spreadsheet program Emacs" tar
      ((:url . "http://elpa.gnu.org/packages/dismal.html"))])
 (djvu .
       [(0 5)
    nil "Edit and view Djvu files via djvused" single
    ((:url . "http://elpa.gnu.org/packages/djvu.html")
     (:keywords "files" "wp"))])
 (docbook .
      [(0 1)
       nil "Info-like viewer for DocBook" single
       ((:url . "http://elpa.gnu.org/packages/docbook.html")
        (:keywords "docs" "help"))])
 (dts-mode .
       [(0 1 0)
        nil "Major mode for Device Tree source files" single
        ((:url . "http://elpa.gnu.org/packages/dts-mode.html")
         (:keywords "languages"))])
 (easy-kill .
        [(0 9 3)
         ((emacs
           (24))
          (cl-lib
           (0 5)))
         "kill & mark things easily" tar
         ((:keywords "killing" "convenience")
          (:url . "https://github.com/leoliu/easy-kill"))])
 (ebdb .
       [(0 6)
    ((emacs
      (25 1))
     (cl-lib
      (0 5))
     (seq
      (2 15)))
    "Contact management package" tar
    ((:keywords "convenience" "mail")
     (:url . "https://github.com/girzel/ebdb"))])
 (ebdb-gnorb .
         [(1 0 2)
          ((gnorb
        (1 1 0))
           (ebdb
        (0 2)))
          "Utilities for connecting EBDB to Gnorb" single
          ((:url . "http://elpa.gnu.org/packages/ebdb-gnorb.html")
           (:keywords))])
 (ebdb-i18n-chn .
        [(1 2)
         ((pyim
           (1 6 0))
          (ebdb
           (0 2)))
         "China-specific internationalization support for EBDB" single
         ((:url . "http://elpa.gnu.org/packages/ebdb-i18n-chn.html")
          (:keywords))])
 (ediprolog .
        [(1 2)
         nil "Emacs Does Interactive Prolog" single
         ((:url . "http://elpa.gnu.org/packages/ediprolog.html")
          (:keywords "languages" "processes"))])
 (eglot .
    [(1 1)
     ((emacs
       (26 1))
      (jsonrpc
       (1 0 6)))
     "Client for Language Server Protocol (LSP) servers" tar
     ((:keywords "convenience" "languages")
      (:url . "https://github.com/joaotavora/eglot"))])
 (el-search .
        [(1 7 15)
         ((emacs
           (25))
          (stream
           (2 2 4))
          (cl-print
           (1 0)))
         "Expression based interactive search for Emacs Lisp" tar
         ((:keywords "lisp")
          (:url . "http://elpa.gnu.org/packages/el-search.html"))])
 (eldoc-eval .
         [(0 1)
          nil "Enable eldoc support when minibuffer is in use." single
          ((:url . "http://elpa.gnu.org/packages/eldoc-eval.html")
           (:keywords))])
 (electric-spacing .
           [(5 0)
            nil "Insert operators with surrounding spaces smartly" single
            ((:url . "http://elpa.gnu.org/packages/electric-spacing.html")
             (:keywords))])
 (enwc .
       [(2 0)
    ((emacs
      (25 1)))
    "The Emacs Network Client" tar
    ((:keywords "external" "network" "wicd" "manager" "nm")
     (:url . "http://elpa.gnu.org/packages/enwc.html"))])
 (epoch-view .
         [(0 0 1)
          nil "Minor mode to visualize epoch timestamps" single
          ((:url . "http://elpa.gnu.org/packages/epoch-view.html")
           (:keywords "data" "timestamp" "epoch" "unix"))])
 (ergoemacs-mode .
         [(5 16 10 12)
          ((emacs
            (24 1))
           (undo-tree
            (0 6 5))
           (cl-lib
            (0 5)))
          "Emacs mode based on common modern interface and ergonomics." tar
          ((:keywords "convenience")
           (:url . "https://github.com/ergoemacs/ergoemacs-mode"))])
 (excorporate .
          [(0 8 1)
           ((emacs
         (24 1))
        (fsm
         (0 2))
        (soap-client
         (3 1 4))
        (url-http-ntlm
         (2 0 3))
        (nadvice
         (0 3)))
           "Exchange integration" tar
           ((:keywords "calendar")
        (:url . "http://elpa.gnu.org/packages/excorporate.html"))])
 (exwm .
       [(0 20)
    ((xelb
      (0 16)))
    "Emacs X Window Manager" tar
    ((:keywords "unix")
     (:url . "https://github.com/ch11ng/exwm"))])
 (f90-interface-browser .
            [(1 1)
             nil "Parse and browse f90 interfaces" single
             ((:url . "http://github.com/wence-/f90-iface/")
              (:keywords))])
 (filladapt .
        [(2 12 2)
         ((emacs
           (24 4)))
         "Adaptive fill" single
         ((:url . "http://elpa.gnu.org/packages/filladapt.html")
          (:keywords))])
 (flylisp .
      [(0 2)
       ((emacs
         (24 1))
        (cl-lib
         (0 4)))
       "Color unbalanced parentheses and parentheses inconsistent with indentation" single
       ((:url . "http://elpa.gnu.org/packages/flylisp.html")
        (:keywords))])
 (fountain-mode .
        [(2 6 1)
         ((emacs
           (24 5)))
         "Major mode for screenwriting in Fountain markup" single
         ((:url . "http://elpa.gnu.org/packages/fountain-mode.html")
          (:keywords "wp" "text"))])
 (frame-tabs .
         [(1 1)
          nil "show buffer tabs in side window" single
          ((:url . "http://elpa.gnu.org/packages/frame-tabs.html")
           (:keywords "frames" "tabs"))])
 (fsm .
      [(0 2 1)
       ((emacs
     (24 1))
    (cl-lib
     (0 5)))
       "state machine library" single
       ((:url . "http://elpa.gnu.org/packages/fsm.html")
    (:keywords "extensions"))])
 (ggtags .
     [(0 8 13)
      ((emacs
        (24))
       (cl-lib
        (0 5)))
      "emacs frontend to GNU Global source code tagging system" single
      ((:url . "https://github.com/leoliu/ggtags")
       (:keywords "tools" "convenience"))])
 (gited .
    [(0 5 3)
     ((emacs
       (24 4))
      (cl-lib
       (0 5)))
     "Operate on Git branches like dired" tar
     ((:keywords "git" "vc" "convenience")
      (:url . "http://elpa.gnu.org/packages/gited.html"))])
 (gle-mode .
       [(1 1)
        ((cl-lib
          (0 5)))
        "Major mode to edit Graphics Layout Engine files" single
        ((:url . "http://elpa.gnu.org/packages/gle-mode.html")
         (:keywords))])
 (gnome-c-style .
        [(0 1)
         nil "minor mode for editing GNOME-style C source code" tar
         ((:keywords "gnome" "c" "coding style")
          (:url . "http://elpa.gnu.org/packages/gnome-c-style.html"))])
 (gnorb .
    [(1 6 0)
     ((cl-lib
       (0 5)))
     "Glue code between Gnus, Org, and BBDB" tar
     ((:keywords "mail" "org" "gnus" "bbdb" "todo" "task")
      (:url . "http://elpa.gnu.org/packages/gnorb.html"))])
 (gnugo .
    [(3 1 0)
     ((ascii-art-to-unicode
       (1 5))
      (xpm
       (1 0 1))
      (cl-lib
       (0 5)))
     "play GNU Go in a buffer" tar
     ((:keywords "games" "processes")
      (:url . "http://www.gnuvola.org/software/gnugo/"))])
 (gnus-mock .
        [(0 3 0)
         nil "Mock Gnus installation for testing" tar
         ((:url . "http://elpa.gnu.org/packages/gnus-mock.html"))])
 (heap .
       [(0 5)
    nil "Heap (a.k.a. priority queue) data structure" single
    ((:url . "http://www.dr-qubit.org/emacs.php")
     (:keywords "extensions" "data structures" "heap" "priority queue"))])
 (helm-ebdb .
        [(1)
         ((helm
           (1 0))
          (ebdb
           (0 2)))
         "Helm integration for EBDB" single
         ((:url . "http://elpa.gnu.org/packages/helm-ebdb.html")
          (:keywords "mail" "convenience"))])
 (highlight-escape-sequences .
                 [(0 4)
                  nil "Highlight escape sequences" single
                  ((:url . "https://github.com/dgutov/highlight-escape-sequences")
                   (:keywords "convenience"))])
 (hook-helpers .
           [(1 1 1)
        ((emacs
          (25 1)))
        "Anonymous, modifiable hook functions" tar
        ((:keywords "development" "hooks")
         (:url . "https://savannah.nongnu.org/projects/hook-helpers-el/"))])
 (html5-schema .
           [(0 1)
        nil "Add HTML5 schemas for use by nXML" tar
        ((:keywords "html" "xml")
         (:url . "https://github.com/validator/validator"))])
 (hydra .
    [(0 14 0)
     ((cl-lib
       (0 5)))
     "Make bindings that stick around." tar
     ((:keywords "bindings")
      (:url . "https://github.com/abo-abo/hydra"))])
 (hyperbole .
        [(7 0 2)
         ((emacs
           (24 4)))
         "GNU Hyperbole: The Everyday Hypertextual Information Manager" tar
         ((:keywords "comm" "convenience" "files" "frames" "hypermedia" "languages" "mail" "matching" "mouse" "multimedia" "outlines" "tools" "wp")
          (:url . "http://www.gnu.org/software/hyperbole"))])
 (ioccur .
     [(2 4)
      nil "Incremental occur" single
      ((:url . "http://elpa.gnu.org/packages/ioccur.html")
       (:keywords))])
 (iterators .
        [(0 1 1)
         ((emacs
           (25)))
         "Functions for working with iterators" single
         ((:url . "http://elpa.gnu.org/packages/iterators.html")
          (:keywords "extensions" "elisp"))])
 (ivy .
      [(0 10 0)
       ((emacs
     (24 1)))
       "Incremental Vertical completYon" tar
       ((:keywords "matching")
    (:url . "https://github.com/abo-abo/swiper"))])
 (javaimp .
      [(0 6)
       nil "Add and reorder Java import statements in Maven projects" tar
       ((:keywords "java" "maven" "programming")
        (:url . "http://elpa.gnu.org/packages/javaimp.html"))])
 (jgraph-mode .
          [(1 1)
           ((cl-lib
         (0 5)))
           "Major mode for Jgraph files" single
           ((:url . "http://elpa.gnu.org/packages/jgraph-mode.html")
        (:keywords "tex" "wp"))])
 (js2-mode .
       [(20180301)
        ((emacs
          (24 1))
         (cl-lib
          (0 5)))
        "Improved JavaScript editing mode" tar
        ((:keywords "languages" "javascript")
         (:url . "https://github.com/mooz/js2-mode/"))])
 (json-mode .
        [(0 1)
         ((emacs
           (25 1)))
         "Major mode for editing JSON files" single
         ((:url . "http://elpa.gnu.org/packages/json-mode.html")
          (:keywords "data"))])
 (jsonrpc .
      [(1 0 6)
       ((emacs
         (25 2)))
       "JSON-RPC library" single
       ((:url . "http://elpa.gnu.org/packages/jsonrpc.html")
        (:keywords "processes" "languages" "extensions"))])
 (jumpc .
    [(3 0)
     nil "jump to previous insertion points" single
     ((:url . "http://elpa.gnu.org/packages/jumpc.html")
      (:keywords))])
 (kmb .
      [(0 1)
       ((emacs
     (24 1)))
       "Kill buffers matching a regexp w/o confirmation" single
       ((:url . "http://elpa.gnu.org/packages/kmb.html")
    (:keywords "lisp" "convenience"))])
 (landmark .
       [(1 0)
        nil "Neural-network robot that learns landmarks" single
        ((:url . "http://elpa.gnu.org/packages/landmark.html")
         (:keywords "games" "neural network" "adaptive search" "chemotaxis"))])
 (let-alist .
   [(1 0 5)
    ((emacs
      (24 1)))
    "Easily let-bind values of an assoc-list by their names" single
    ((:url . "http://elpa.gnu.org/packages/let-alist.html")
     (:keywords "extensions" "lisp"))])
 (lex .
      [(1 1)
       nil "Lexical analyser construction" tar
       ((:url . "http://elpa.gnu.org/packages/lex.html"))])
 (lmc .
      [(1 4)
       ((emacs
     (24))
    (cl-lib
     (0 5)))
       "Little Man Computer in Elisp" single
       ((:url . "http://elpa.gnu.org/packages/lmc.html")
    (:keywords))])
 (load-dir .
       [(0 0 5)
        ((cl-lib
          (0 5)))
        "Load all Emacs Lisp files in a given directory" single
        ((:url . "http://elpa.gnu.org/packages/load-dir.html")
         (:keywords "lisp" "files" "convenience"))])
 (load-relative .
        [(1 3)
         nil "relative file load (within a multi-file Emacs package)" single
         ((:url . "http://github.com/rocky/emacs-load-relative")
          (:keywords "internal"))])
 (loc-changes .
          [(1 2)
           nil "keep track of positions even after buffer changes" single
           ((:url . "http://github.com/rocky/emacs-loc-changes")
        (:keywords))])
 (loccur .
     [(1 2 3)
      ((cl-lib
        (0)))
      "Perform an occur-like folding in current buffer" single
      ((:url . "https://github.com/fourier/loccur")
       (:keywords "matching"))])
 (markchars .
        [(0 2 1)
         nil "Mark chars fitting certain characteristics" single
         ((:url . "http://elpa.gnu.org/packages/markchars.html")
          (:keywords))])
 (math-symbol-lists .
            [(1 1)
             nil "Lists of Unicode math symbols and latex commands" tar
             ((:keywords "unicode" "symbols" "mathematics")
              (:url . "https://github.com/vspinu/math-symbol-lists"))])
 (memory-usage .
           [(0 2)
        nil "Analyze the memory usage of Emacs in various ways" single
        ((:url . "http://elpa.gnu.org/packages/memory-usage.html")
         (:keywords "maint"))])
 (metar .
    [(0 3)
     ((cl-lib
       (0 5)))
     "Retrieve and decode METAR weather information" single
     ((:url . "http://elpa.gnu.org/packages/metar.html")
      (:keywords "comm"))])
 (midi-kbd .
       [(0 2)
        ((emacs
          (25)))
        "Create keyboard events from Midi input" single
        ((:url . "http://elpa.gnu.org/packages/midi-kbd.html")
         (:keywords "convenience" "hardware" "multimedia"))])
 (mines .
    [(1 6)
     ((emacs
       (24 4))
      (cl-lib
       (0 5)))
     "Minesweeper game" tar
     ((:keywords "games")
      (:url . "https://github.com/calancha/Minesweeper"))])
 (minibuffer-line .
          [(0 1)
           nil "Display status info in the minibuffer window" single
           ((:url . "http://elpa.gnu.org/packages/minibuffer-line.html")
            (:keywords))])
 (minimap .
      [(1 2)
       nil "Sidebar showing a \"mini-map\" of a buffer" single
       ((:url . "http://elpa.gnu.org/packages/minimap.html")
        (:keywords))])
 (mmm-mode .
       [(0 5 7)
        ((cl-lib
          (0 2)))
        "Allow Multiple Major Modes in a buffer" tar
        ((:keywords "convenience" "faces" "languages" "tools")
         (:url . "https://github.com/purcell/mmm-mode"))])
 (multishell .
         [(1 1 5)
          ((cl-lib
        (0 5)))
          "Easily use multiple shell buffers, local and remote" tar
          ((:keywords "processes")
           (:url . "https://github.com/kenmanheimer/EmacsMultishell"))])
 (muse .
       [(3 20 2)
    nil "Authoring and publishing tool for Emacs" tar
    ((:keywords "hypermedia")
     (:url . "http://mwolson.org/projects/EmacsMuse.html"))])
 (myers .
    [(0 1)
     ((emacs
       (25)))
     "Random-access singly-linked lists" single
     ((:url . "http://elpa.gnu.org/packages/myers.html")
      (:keywords "list" "containers"))])
 (nadvice .
      [(0 3)
       nil "Forward compatibility for Emacs-24.4's nadvice" single
       ((:url . "http://elpa.gnu.org/packages/nadvice.html")
        (:keywords))])
 (nameless .
       [(1 0 2)
        ((emacs
          (24 4)))
        "Hide package namespace in your emacs-lisp code" single
        ((:url . "https://github.com/Malabarba/nameless")
         (:keywords "convenience" "lisp"))])
 (names .
    [(20151201 0)
     ((emacs
       (24 1))
      (cl-lib
       (0 5))
      (nadvice
       (0 3)))
     "Namespaces for emacs-lisp. Avoid name clobbering without hiding symbols." tar
     ((:keywords "extensions" "lisp")
      (:url . "https://github.com/Malabarba/names"))])
 (nhexl-mode .
         [(1 0)
          ((emacs
        (24 4))
           (cl-lib
        (0 5)))
          "Minor mode to edit files via hex-dump format" single
          ((:url . "http://elpa.gnu.org/packages/nhexl-mode.html")
           (:keywords "data"))])
 (nlinum .
     [(1 8 1)
      nil "Show line numbers in the margin" single
      ((:url . "http://elpa.gnu.org/packages/nlinum.html")
       (:keywords "convenience"))])
 (notes-mode .
         [(1 30)
          nil "Indexing system for on-line note-taking" tar
          ((:url . "http://elpa.gnu.org/packages/notes-mode.html"))])
 (ntlm .
       [(2 1 0)
    nil "NTLM (NT LanManager) authentication support" single
    ((:url . "http://elpa.gnu.org/packages/ntlm.html")
     (:keywords "ntlm" "sasl" "comm"))])
 (num3-mode .
        [(1 3)
         nil "highlight groups of digits in long numbers" single
         ((:url . "http://elpa.gnu.org/packages/num3-mode.html")
          (:keywords "faces" "minor-mode"))])
 (oauth2 .
     [(0 11)
      nil "OAuth 2.0 Authorization Protocol" single
      ((:url . "http://elpa.gnu.org/packages/oauth2.html")
       (:keywords "comm"))])
 (omn-mode .
       [(1 2)
        nil "Support for OWL Manchester Notation" single
        ((:url . "http://elpa.gnu.org/packages/omn-mode.html")
         (:keywords))])
 (on-screen .
        [(1 3 2)
         ((cl-lib
           (0)))
         "guide your eyes while scrolling" single
         ((:url . "https://github.com/michael-heerdegen/on-screen.el")
          (:keywords "convenience"))])
 (org .
      [(9 1 14)
       nil "Outline-based notes management and organizer" tar
       ((:keywords "outlines" "hypermedia" "calendar" "wp")
    (:url . "http://elpa.gnu.org/packages/org.html"))])
 (org-edna .
       [(1 0 -2 8)
        ((emacs
          (25 1))
         (seq
          (2 19))
         (org
          (9 0 5)))
        "Extensible Dependencies 'N' Actions" tar
        ((:keywords "convenience" "text" "org")
         (:url . "https://savannah.nongnu.org/projects/org-edna-el/"))])
 (orgalist .
       [(1 9)
        ((emacs
          (24 4)))
        "Manage Org-like lists in non-Org buffers" single
        ((:url . "http://elpa.gnu.org/packages/orgalist.html")
         (:keywords "convenience"))])
 (osc .
      [(0 1)
       nil "Open Sound Control protocol library" single
       ((:url . "http://elpa.gnu.org/packages/osc.html")
    (:keywords "comm" "processes" "multimedia"))])
 (other-frame-window .
             [(1 0 6)
              ((emacs
            (24 4)))
              "Minor mode to enable global prefix keys for other frame/window buffer placement" single
              ((:url . "http://elpa.gnu.org/packages/other-frame-window.html")
               (:keywords "frame" "window"))])
 (pabbrev .
      [(4 2 1)
       nil "Predictive abbreviation expansion" single
       ((:url . "http://elpa.gnu.org/packages/pabbrev.html")
        (:keywords))])
 (paced .
    [(1 1 3)
     ((emacs
       (25 1))
      (async
       (1 9 1)))
     "Predictive Abbreviation Completion and Expansion using Dictionaries" tar
     ((:keywords "convenience" "completion")
      (:url . "https://savannah.nongnu.org/projects/paced-el/"))])
 (parsec .
     [(0 1 3)
      ((emacs
        (24))
       (cl-lib
        (0 5)))
      "Parser combinator library" tar
      ((:keywords "extensions")
       (:url . "https://github.com/cute-jumper/parsec.el"))])
 (pinentry .
       [(0 1)
        nil "GnuPG Pinentry server implementation" single
        ((:url . "http://elpa.gnu.org/packages/pinentry.html")
         (:keywords "gnupg"))])
 (poker .
    [(0 2)
     nil "Texas hold 'em poker" single
     ((:url . "http://elpa.gnu.org/packages/poker.html")
      (:keywords "games"))])
 (posframe .
       [(0 3 0)
        ((emacs
          (26)))
        "Pop a posframe (just a frame) at point" single
        ((:url . "https://github.com/tumashu/posframe")
         (:keywords "tooltip"))])
 (psgml .
    [(1 3 4)
     nil "SGML-editing mode with parsing support" tar
     ((:keywords "languages")
      (:url . "http://elpa.gnu.org/packages/psgml.html"))])
 (python .
     [(0 26 1)
      ((emacs
        (24 1))
       (cl-lib
        (1 0)))
      "Python's flying circus support for Emacs" single
      ((:url . "https://github.com/fgallina/python.el")
       (:keywords "languages"))])
 (quarter-plane .
        [(0 1)
         nil "Minor mode for quarter-plane style editing" single
         ((:url . "http://elpa.gnu.org/packages/quarter-plane.html")
          (:keywords "convenience" "wp"))])
 (queue .
    [(0 2)
     nil "Queue data structure" single
     ((:url . "http://www.dr-qubit.org/emacs.php")
      (:keywords "extensions" "data structures" "queue"))])
 (rainbow-mode .
           [(1 0 1)
        nil "Colorize color names in buffers" single
        ((:url . "http://elpa.gnu.org/packages/rainbow-mode.html")
         (:keywords "faces"))])
 (rbit .
       [(0 1)
    nil "Red-black persistent interval trees" single
    ((:url . "http://elpa.gnu.org/packages/rbit.html")
     (:keywords "data structures" "binary tree" "intervals"))])
 (rcirc-color .
          [(0 4 1)
           ((emacs
         (24 4)))
           "color nicks" single
           ((:url . "http://elpa.gnu.org/packages/rcirc-color.html")
        (:keywords "comm"))])
 (rcirc-menu .
         [(1 1)
          nil "A menu of all your rcirc connections" single
          ((:url . "http://elpa.gnu.org/packages/rcirc-menu.html")
           (:keywords "comm"))])
 (realgud .
      [(1 4 5)
       ((load-relative
         (1 2))
        (loc-changes
         (1 2))
        (test-simple
         (1 2 0))
        (cl-lib
         (0 5))
        (emacs
         (24)))
       "A modular front-end for interacting with external debuggers" tar
       ((:keywords "gdb" "python" "perl" "go" "bash" "nodejs" "zsh" "bashdb" "zshdb" "remake" "make" "trepan" "perldb" "pdb")
        (:url . "http://github.com/realgud/realgud/"))])
 (register-list .
        [(0 1)
         nil "Interactively list/edit registers" single
         ((:url . "http://elpa.gnu.org/packages/register-list.html")
          (:keywords "register"))])
 (rich-minority .
        [(1 0 1)
         ((cl-lib
           (0 5)))
         "Clean-up and Beautify the list of minor-modes." single
         ((:url . "https://github.com/Malabarba/rich-minority")
          (:keywords "mode-line" "faces"))])
 (rnc-mode .
       [(0 2)
        nil "Emacs mode to edit Relax-NG Compact files" single
        ((:url . "http://elpa.gnu.org/packages/rnc-mode.html")
         (:keywords "xml" "relaxng"))])
 (rudel .
    [(0 3 1)
     ((emacs
       (24))
      (cl-lib
       (0 5))
      (cl-generic
       (0 3))
      (cl-print
       (1 0)))
     "A collaborative editing framework for Emacs" tar
     ((:keywords "rudel" "collaboration")
      (:url . "http://rudel.sourceforge.net/"))])
 (scroll-restore .
         [(1 0)
          nil "restore original position after scrolling" single
          ((:url . "http://elpa.gnu.org/packages/scroll-restore.html")
           (:keywords "scrolling"))])
 (sed-mode .
       [(1 0)
        nil "Major mode to edit sed scripts" single
        ((:url . "http://elpa.gnu.org/packages/sed-mode.html")
         (:keywords))])
 (seq .
      [(2 20)
       nil "Sequence manipulation functions" tar
       ((:keywords "sequences")
    (:url . "http://elpa.gnu.org/packages/seq.html"))])
 (shen-mode .
        [(0 1)
         nil "A major mode for editing shen source code" tar
         ((:keywords "languages" "shen")
          (:url . "http://elpa.gnu.org/packages/shen-mode.html"))])
 (sisu-mode .
        [(7 1 8)
         nil "Major mode for SiSU markup text" single
         ((:url . "http://www.sisudoc.org/")
          (:keywords "text" "syntax" "processes" "tools"))])
 (smart-yank .
         [(0 1 1)
          ((emacs
        (24)))
          "A different approach of yank pointer handling" single
          ((:url . "http://elpa.gnu.org/packages/smart-yank.html")
           (:keywords "convenience"))])
 (sml-mode .
       [(6 9)
        ((emacs
          (24))
         (cl-lib
          (0 5)))
        "Major mode for editing (Standard) ML" single
        ((:url . "http://elpa.gnu.org/packages/sml-mode.html")
         (:keywords "sml"))])
 (soap-client .
          [(3 1 5)
           ((cl-lib
         (0 6 1)))
           "Access SOAP web services" tar
           ((:keywords "soap" "web-services" "comm" "hypermedia")
        (:url . "http://elpa.gnu.org/packages/soap-client.html"))])
 (sokoban .
      [(1 4 6)
       ((emacs
         (23 1)))
       "Implementation of Sokoban for Emacs." tar
       ((:keywords "games")
        (:url . "http://elpa.gnu.org/packages/sokoban.html"))])
 (sotlisp .
      [(1 6 2)
       ((emacs
         (24 1)))
       "Write lisp at the speed of thought." single
       ((:url . "https://github.com/Malabarba/speed-of-thought-lisp")
        (:keywords "convenience" "lisp"))])
 (spinner .
      [(1 7 3)
       nil "Add spinners and progress-bars to the mode-line for ongoing operations" single
       ((:url . "https://github.com/Malabarba/spinner.el")
        (:keywords "processes" "mode-line"))])
 (sql-indent .
         [(1 3)
          ((cl-lib
        (0 5)))
          "Support for indenting code in SQL files." tar
          ((:keywords "languages" "sql")
           (:url . "http://elpa.gnu.org/packages/sql-indent.html"))])
 (ssh-deploy .
         [(2 0)
          ((emacs
        (24)))
          "Deployment via TRAMP, global or per directory." tar
          ((:keywords "tools" "convenience")
           (:url . "https://github.com/cjohansson/emacs-ssh-deploy"))])
 (stream .
     [(2 2 4)
      ((emacs
        (25)))
      "Implementation of streams" tar
      ((:keywords "stream" "laziness" "sequences")
       (:url . "http://elpa.gnu.org/packages/stream.html"))])
 (svg .
      [(0 1)
       ((emacs
     (25)))
       "svg image creation functions" single
       ((:url . "http://elpa.gnu.org/packages/svg.html")
    (:keywords "image"))])
 (svg-clock .
        [(1 0)
         ((svg
           (0 1))
          (emacs
           (25 0)))
         "Analog clock using Scalable Vector Graphics" single
         ((:url . "http://elpa.gnu.org/packages/svg-clock.html")
          (:keywords "demo" "svg" "clock"))])
 (tNFA .
       [(0 1 1)
    ((queue
      (0 1)))
    "Tagged non-deterministic finite-state automata" single
    ((:url . "http://www.dr-qubit.org/emacs.php")
     (:keywords "extensions" "matching" "data structures tnfa" "nfa" "dfa" "finite state automata" "automata" "regexp"))])
 (temp-buffer-browse .
             [(1 5)
              ((emacs
            (24)))
              "temp buffer browse mode" single
              ((:url . "http://elpa.gnu.org/packages/temp-buffer-browse.html")
               (:keywords "convenience"))])
 (test-simple .
          [(1 3 0)
           ((cl-lib
         (0)))
           "Simple Unit Test Framework for Emacs Lisp" single
           ((:url . "http://github.com/rocky/emacs-test-simple")
        (:keywords "unit-test"))])
 (timerfunctions .
         [(1 4 2)
          ((cl-lib
            (0 5)))
          "Enhanced versions of some timer.el functions" single
          ((:url . "http://elpa.gnu.org/packages/timerfunctions.html")
           (:keywords))])
 (tiny .
       [(0 2 1)
    nil "Quickly generate linear ranges in Emacs" tar
    ((:keywords "convenience")
     (:url . "https://github.com/abo-abo/tiny"))])
 (tramp-theme .
          [(0 2)
           ((emacs
         (24 1)))
           "Custom theme for remote buffers" single
           ((:url . "http://elpa.gnu.org/packages/tramp-theme.html")
        (:keywords "convenience" "faces"))])
 (transcribe .
         [(1 5 2)
          nil "Package for audio transcriptions" single
          ((:url . "http://elpa.gnu.org/packages/transcribe.html")
           (:keywords))])
 (trie .
       [(0 4)
    ((tNFA
      (0 1 1))
     (heap
      (0 3)))
    "Trie data structure" single
    ((:url . "http://www.dr-qubit.org/emacs.php")
     (:keywords "extensions" "matching" "data structures trie" "ternary search tree" "tree" "completion" "regexp"))])
 (undo-tree .
        [(0 6 5)
         nil "Treat undo history as a tree" single
         ((:url . "http://www.dr-qubit.org/emacs.php")
          (:keywords "convenience" "files" "undo" "redo" "history" "tree"))])
 (uni-confusables .
          [(0 1)
           nil "Unicode confusables table" tar
           ((:url . "http://elpa.gnu.org/packages/uni-confusables.html"))])
 (url-http-ntlm .
        [(2 0 4)
         ((cl-lib
           (0 5))
          (ntlm
           (2 1 0)))
         "NTLM authentication for the url library" single
         ((:url . "http://elpa.gnu.org/packages/url-http-ntlm.html")
          (:keywords "comm" "data" "processes" "hypermedia"))])
 (validate .
       [(1 0 4)
        ((emacs
          (24 1))
         (cl-lib
          (0 5))
         (seq
          (2 16)))
        "Schema validation for Emacs-lisp" single
        ((:url . "http://elpa.gnu.org/packages/validate.html")
         (:keywords "lisp"))])
 (vdiff .
    [(0 2 3)
     ((emacs
       (24 4))
      (hydra
       (0 13 0)))
     "A diff tool similar to  vimdiff" single
     ((:url . "https://github.com/justbur/emacs-vdiff")
      (:keywords "diff"))])
 (vigenere .
       [(1 0)
        ((emacs
          (25 1)))
        "Run a vigenere cipher on a block of text ;" single
        ((:url . "https://elpa.gnu.org/packages/vigenere.html")
         (:keywords "data" "vigenere" "cipher"))])
 (visual-fill .
          [(0 1)
           nil "Auto-refill paragraphs without modifying the buffer" single
           ((:url . "http://elpa.gnu.org/packages/visual-fill.html")
        (:keywords))])
 (vlf .
      [(1 7 1)
       nil "View Large Files" tar
       ((:keywords "large files" "utilities")
    (:url . "https://github.com/m00natic/vlfi"))])
 (w3 .
     [(4 0 49)
      nil "Fully customizable, largely undocumented web browser for Emacs" tar
      ((:keywords "faces" "help" "comm" "news" "mail" "processes" "mouse" "hypermedia")
       (:url . "http://elpa.gnu.org/packages/w3.html"))])
 (wcheck-mode .
          [(2016 1 30)
           nil "General interface for text checkers" single
           ((:url . "https://github.com/tlikonen/wcheck-mode")
        (:keywords "text" "spell" "check" "languages" "ispell"))])
 (wconf .
    [(0 2 1)
     ((emacs
       (24 4)))
     "Minimal window layout manager" single
     ((:url . "https://github.com/ilohmar/wconf")
      (:keywords "windows" "frames" "layout"))])
 (web-server .
         [(0 1 1)
          ((emacs
        (24 3)))
          "Emacs Web Server" tar
          ((:keywords "http" "server" "network")
           (:url . "https://github.com/eschulte/emacs-web-server"))])
 (websocket .
        [(1 8)
         ((cl-lib
           (0 5)))
         "Emacs WebSocket client and server" tar
         ((:keywords "communication" "websocket" "server")
          (:url . "http://elpa.gnu.org/packages/websocket.html"))])
 (which-key .
        [(3 3 0)
         ((emacs
           (24 4)))
         "Display available keybindings in popup" tar
         ((:url . "https://github.com/justbur/emacs-which-key"))])
 (windresize .
         [(0 1)
          nil "Resize windows interactively" single
          ((:url . "http://elpa.gnu.org/packages/windresize.html")
           (:keywords "window"))])
 (wisi .
       [(1 1 6)
    ((cl-lib
      (0 4))
     (emacs
      (24 3)))
    "Utilities for implementing an indentation/navigation engine using a generalized LALR parser" tar
    ((:keywords "parser" "indentation" "navigation")
     (:url . "http://www.nongnu.org/ada-mode/wisi/wisi.html"))])
 (wpuzzle .
      [(1 1)
       nil "find as many word in a given time" single
       ((:url . "http://elpa.gnu.org/packages/wpuzzle.html")
        (:keywords))])
 (xclip .
    [(1 5)
     nil "Copy&paste GUI clipboard from text terminal" single
     ((:url . "http://elpa.gnu.org/packages/xclip.html")
      (:keywords "convenience" "tools"))])
 (xelb .
       [(0 16)
    ((emacs
      (24 4))
     (cl-generic
      (0 2)))
    "X protocol Emacs Lisp Binding" tar
    ((:keywords "unix")
     (:url . "https://github.com/ch11ng/xelb"))])
 (xpm .
      [(1 0 4)
       nil "edit XPM images" tar
       ((:keywords "multimedia" "xpm")
    (:url . "http://www.gnuvola.org/software/xpm/"))])
 (yasnippet .
        [(0 13 0)
         ((cl-lib
           (0 5)))
         "Yet another snippet extension for Emacs." tar
         ((:keywords "convenience" "emulation")
          (:url . "http://github.com/joaotavora/yasnippet"))])
 (yasnippet-classic-snippets .
                 [(1 0 2)
                  ((yasnippet
                (0 9 1)))
                  "\"Classic\" yasnippet snippets" tar
                  ((:keywords "snippets")
                   (:url . "http://elpa.gnu.org/packages/yasnippet-classic-snippets.html"))])
 (zones .
    [(2018 11 20)
     nil "Zones of text - like multiple regions" single
     ((:url . "https://elpa.gnu.org/packages/zones.html")
      (:keywords "narrow" "restriction" "widen" "region" "zone"))])
 (ztree .
    [(1 0 5)
     ((cl-lib
       (0)))
     "Text mode directory tree" tar
     ((:keywords "files" "tools")
      (:url . "https://github.com/fourier/ztree"))]))