-
Notifications
You must be signed in to change notification settings - Fork 267
/
Copy patharchive-contents
2344 lines (2344 loc) · 75.5 KB
/
archive-contents
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
(1
(ace-window .
[(0 9 0)
((avy
(0 2 0)))
"Quickly switch windows." single
((:keywords "window" "location")
(:authors
("Oleh Krehel" . "[email protected]"))
(:maintainer "Oleh Krehel" . "[email protected]")
(:url . "https://github.com/abo-abo/ace-window"))])
(ack .
[(1 8)
nil "interface to ack-like tools" tar
((:url . "https://github.com/leoliu/ack-el")
(:maintainer "João Távora" . "[email protected]")
(:authors
("Leo Liu" . "[email protected]"))
(:keywords "tools" "processes" "convenience"))])
(ada-mode .
[(7 0 1)
((uniquify-files
(1 0 1))
(wisi
(3 0 1))
(emacs
(25 0)))
"major-mode for editing Ada sources" tar
((:url . "http://www.nongnu.org/ada-mode/")
(:maintainer "Stephen Leake" . "[email protected]")
(:authors
("Stephen Leake" . "[email protected]"))
(:keywords "languages" "ada"))])
(ada-ref-man .
[(2012 5)
nil "Ada Reference Manual 2012" tar
((:url . "http://stephe-leake.org/ada/arm.html")
(:maintainer "Stephen Leake" . "[email protected]")
(:authors
("Stephen Leake" . "[email protected]"))
(:keywords "languages" "ada"))])
(adaptive-wrap .
[(0 7)
nil "Smart line-wrapping with wrap-prefix" single
((:url . "http://elpa.gnu.org/packages/adaptive-wrap.html")
(:authors
("Stephen Berman" . "[email protected]")
("Stefan Monnier" . "[email protected]"))
(:maintainer "Stephen Berman" . "[email protected]"))])
(adjust-parens .
[(3 1)
nil "Indent and dedent Lisp code, automatically adjust close parens" tar
((:maintainer "Barry O'Reilly" . "[email protected]")
(:authors
("Barry O'Reilly" . "[email protected]"))
(:url . "http://elpa.gnu.org/packages/adjust-parens.html"))])
(advice-patch .
[(0 1)
((emacs
(24 4)))
"Use patches to advise the inside of functions" single
((:url . "http://elpa.gnu.org/packages/advice-patch.html")
(:authors
("Stefan Monnier" . "[email protected]"))
(:maintainer "Stefan Monnier" . "[email protected]"))])
(aggressive-indent .
[(1 8 3)
((emacs
(24 1))
(cl-lib
(0 5)))
"Minor mode to aggressively keep your code always indented" single
((:keywords "indent" "lisp" "maint" "tools")
(:authors
("Artur Malabarba" . "[email protected]"))
(:maintainer "Artur Malabarba" . "[email protected]")
(:url . "https://github.com/Malabarba/aggressive-indent-mode"))])
(ahungry-theme .
[(1 10 0)
((emacs
(24)))
"Ahungry color theme for Emacs. Make sure to (load-theme 'ahungry)." tar
((:url . "https://github.com/ahungry/color-theme-ahungry")
(:maintainer "Matthew Carter" . "[email protected]")
(:authors
("Matthew Carter" . "[email protected]"))
(:keywords "ahungry" "palette" "color" "theme" "emacs" "color-theme" "deftheme"))])
(all .
[(1 0)
nil "Edit all lines matching a given regexp" single
((:url . "http://elpa.gnu.org/packages/all.html")
(:keywords "matching")
(:authors
("Per Abrahamsen" . "[email protected]"))
(:maintainer "Per Abrahamsen" . "[email protected]"))])
(ampc .
[(0 2)
nil "Asynchronous Music Player Controller" single
((:url . "http://elpa.gnu.org/packages/ampc.html")
(:keywords "ampc" "mpc" "mpd")
(:authors
("Christopher Schmidt" . "[email protected]"))
(:maintainer nil . "[email protected]"))])
(arbitools .
[(0 977)
((cl-lib
(0 5)))
"Package for chess tournaments administration" single
((:url . "http://elpa.gnu.org/packages/arbitools.html")
(:authors
("David Gonzalez Gandara" . "[email protected]"))
(:maintainer "David Gonzalez Gandara" . "[email protected]"))])
(ascii-art-to-unicode .
[(1 12)
nil "a small artist adjunct" single
((:keywords "ascii" "unicode" "box-drawing")
(:authors
("Thien-Thi Nguyen" . "[email protected]"))
(:maintainer "Thien-Thi Nguyen" . "[email protected]")
(:url . "http://www.gnuvola.org/software/aa2u/"))])
(async .
[(1 9 3)
((cl-lib
(0 5))
(nadvice
(0 3)))
"Asynchronous processing in Emacs" tar
((:url . "https://github.com/jwiegley/emacs-async")
(:maintainer "John Wiegley" . "[email protected]")
(:authors
("John Wiegley" . "[email protected]"))
(:keywords "async"))])
(auctex .
[(12 2 0)
((emacs
(24 1))
(cl-lib
(0 5)))
"Integrated environment for *TeX*" tar
((:url . "http://www.gnu.org/software/auctex/")
(:maintainer nil . "[email protected]")
(:keywords "tex" "latex" "texinfo" "context" "doctex" "preview-latex"))])
(aumix-mode .
[(7)
nil "run the aumix program in a buffer" single
((:keywords "multimedia" "mixer" "aumix")
(:authors
("Kevin Ryde" . "[email protected]"))
(:maintainer "Kevin Ryde" . "[email protected]")
(:url . "http://user42.tuxfamily.org/aumix-mode/index.html"))])
(auto-correct .
[(1 1 4)
nil "Remembers and automatically fixes past corrections" single
((:url . "http://elpa.gnu.org/packages/auto-correct.html")
(:keywords "editing")
(:authors
("Ian Dunn" . "[email protected]"))
(:maintainer "Ian Dunn" . "[email protected]"))])
(auto-overlays .
[(0 10 9)
nil "Automatic regexp-delimited overlays" tar
((:url . "http://www.dr-qubit.org/emacs.php")
(:maintainer "Toby Cubitt" . "[email protected]")
(:authors
("Toby Cubitt" . "[email protected]"))
(:keywords "extensions"))])
(avy .
[(0 5 0)
((emacs
(24 1))
(cl-lib
(0 5)))
"Jump to arbitrary positions in visible text and select text quickly." tar
((:url . "https://github.com/abo-abo/avy")
(:maintainer "Oleh Krehel" . "[email protected]")
(:authors
("Oleh Krehel" . "[email protected]"))
(:keywords "point" "location"))])
(bbdb .
[(3 2)
((emacs
(24)))
"core of BBDB" tar
((:maintainer "Roland Winkler" . "[email protected]")
(:url . "http://elpa.gnu.org/packages/bbdb.html"))])
(beacon .
[(1 3 3)
((seq
(2 14)))
"Highlight the cursor whenever the window scrolls" single
((:keywords "convenience")
(:authors
("Artur Malabarba" . "[email protected]"))
(:maintainer "Artur Malabarba" . "[email protected]")
(:url . "https://github.com/Malabarba/beacon"))])
(bluetooth .
[(0 1 2)
((emacs
(25 1))
(dash
(2 12 0)))
"A Major mode for Bluetooth devices" single
((:keywords "hardware")
(:authors
("Raffael Stocker" . "[email protected]"))
(:maintainer "Raffael Stocker" . "[email protected]")
(:url . "https://gitlab.com/rstocker/emacs-bluetooth"))])
(bnf-mode .
[(0 4 3)
((cl-lib
(0 5))
(emacs
(24 3)))
"Major mode for editing BNF grammars." tar
((:url . "https://github.com/sergeyklay/bnf-mode")
(:maintainer "Serghei Iakovlev" . "[email protected]")
(:authors
("Serghei Iakovlev" . "[email protected]"))
(:keywords "languages"))])
(brief .
[(5 87)
nil "Brief Editor Emulator (Brief Mode)" tar
((:maintainer "Luke Lee" . "[email protected]")
(:authors
("Luke Lee" . "[email protected]"))
(:keywords "brief" "emulations" "crisp")
(:url . "http://elpa.gnu.org/packages/brief.html"))])
(buffer-expose .
[(0 4 3)
((emacs
(25))
(cl-lib
(0 5)))
"Visual buffer switching using a window grid" single
((:keywords "convenience")
(:authors
("Clemens Radermacher" . "[email protected]"))
(:maintainer "Clemens Radermacher" . "[email protected]")
(:url . "https://github.com/clemera/buffer-expose"))])
(bug-hunter .
[(1 3 1)
((seq
(1 3))
(cl-lib
(0 5)))
"Hunt down errors by bisecting elisp files" single
((:keywords "lisp")
(:authors
("Artur Malabarba" . "[email protected]"))
(:maintainer "Artur Malabarba" . "[email protected]")
(:url . "https://github.com/Malabarba/elisp-bug-hunter"))])
(caps-lock .
[(1 0)
nil "Caps-lock as a minor mode" single
((:url . "http://elpa.gnu.org/packages/caps-lock.html")
(:authors
("Stefan Monnier" . "[email protected]"))
(:maintainer "Stefan Monnier" . "[email protected]"))])
(captain .
[(1 0 3)
nil "CAPiTalization is Automatic IN emacs" single
((:url . "http://elpa.gnu.org/packages/captain.html")
(:keywords "editing")
(:authors
("Ian Dunn" . "[email protected]"))
(:maintainer "Ian Dunn" . "[email protected]"))])
(chess .
[(2 0 4)
((cl-lib
(0 5)))
"Play chess in GNU Emacs" tar
((:maintainer "Mario Lang" . "[email protected]")
(:authors
("John Wiegley" . "[email protected]"))
(: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")
(:authors
("Stefan Monnier" . "[email protected]"))
(:maintainer "Stefan Monnier" . "[email protected]"))])
(cl-lib .
[(0 6 1)
nil "Forward cl-lib compatibility library for Emacs<24.3" single
((:url . "http://elpa.gnu.org/packages/cl-lib.html")
(:authors
("Stefan Monnier" . "[email protected]"))
(:maintainer "Stefan Monnier" . "[email protected]"))])
(cl-print .
[(1 0)
((emacs
(25)))
"CL-style generic printing" single
((:url . "http://elpa.gnu.org/packages/cl-print.html")
(:authors
("Stefan Monnier" . "[email protected]"))
(:maintainer "Stefan Monnier" . "[email protected]"))])
(clipboard-collector .
[(0 2)
((emacs
(25)))
"Collect clipboard entries according to regex rules" single
((:keywords "convenience")
(:authors
("Clemens Radermacher" . "[email protected]"))
(:maintainer "Clemens Radermacher" . "[email protected]")
(:url . "https://github.com/clemera/clipboard-collector"))])
(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")
(:authors
("Edward Hart" . "[email protected]"))
(:maintainer "Edward Hart" . "[email protected]"))])
(coffee-mode .
[(0 4 1 1)
nil "Major mode for CoffeeScript files" single
((:keywords "coffeescript" "major" "mode")
(:authors
("Chris Wanstrath" . "[email protected]"))
(:maintainer "Chris Wanstrath" . "[email protected]")
(:url . "http://github.com/defunkt/coffee-mode"))])
(compact-docstrings .
[(0 1)
nil "Shrink blank lines in docstrings and doc comments" single
((:keywords "convenience" "faces" "lisp" "maint" "c")
(:authors
("Clément Pit-Claudel" . "[email protected]"))
(:maintainer "Clément Pit-Claudel" . "[email protected]")
(:url . "https://github.com/cpitclaudel/compact-docstrings"))])
(company .
[(0 9 12)
((emacs
(24 3)))
"Modular text completion framework" tar
((:url . "http://company-mode.github.io/")
(:maintainer "Dmitry Gutov" . "[email protected]")
(:authors
("Nikolaj Schumacher"))
(:keywords "abbrev" "convenience" "matching"))])
(company-ebdb .
[(1 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")
(:authors
("Jan Tatarik" . "[email protected]"))
(:maintainer "Eric Abrahamsen" . "[email protected]"))])
(company-math .
[(1 3)
((company
(0 8 0))
(math-symbol-lists
(1 2)))
"Completion backends for unicode math symbols and latex tags" tar
((:url . "https://github.com/vspinu/company-math")
(:maintainer "Vitalie Spinu" . "[email protected]")
(:authors
("Vitalie Spinu" . "[email protected]"))
(:keywords "unicode" "symbols" "completion"))])
(company-statistics .
[(0 2 3)
((emacs
(24 3))
(company
(0 8 5)))
"Sort candidates using completion history" tar
((:url . "https://github.com/company-mode/company-statistics")
(:maintainer "Ingo Lohmar" . "[email protected]")
(:authors
("Ingo Lohmar" . "[email protected]"))
(:keywords "abbrev" "convenience" "matching"))])
(context-coloring .
[(8 1 0)
((emacs
(24 3)))
"Highlight by scope" tar
((:url . "https://github.com/jacksonrayhamilton/context-coloring")
(:maintainer "Jackson Ray Hamilton" . "[email protected]")
(:authors
("Jackson Ray Hamilton" . "[email protected]"))
(:keywords "convenience" "faces" "tools"))])
(crisp .
[(1 3 6)
nil "CRiSP/Brief Emacs emulator" single
((:url . "http://elpa.gnu.org/packages/crisp.html")
(:keywords "emulations" "brief" "crisp")
(:authors
("Gary D. Foster" . "[email protected]"))
(:maintainer "Luke Lee" . "[email protected]"))])
(csv-mode .
[(1 11)
((emacs
(24 1))
(cl-lib
(0 5)))
"Major mode for editing comma/char separated values" single
((:url . "http://elpa.gnu.org/packages/csv-mode.html")
(:keywords "convenience")
(:authors
("\"Francis J. Wright\"" . "[email protected]"))
(:maintainer nil . "[email protected]"))])
(cycle-quotes .
[(0 1)
nil "Cycle between quote styles" tar
((:maintainer "Simen Heggestøyl" . "[email protected]")
(:authors
("Simen Heggestøyl" . "[email protected]"))
(:keywords "convenience")
(:url . "http://elpa.gnu.org/packages/cycle-quotes.html"))])
(darkroom .
[(0 2)
((cl-lib
(0 5)))
"Remove visual distractions and focus on writing" single
((:url . "http://elpa.gnu.org/packages/darkroom.html")
(:keywords "convenience" "emulations")
(:authors
("João Távora" . "[email protected]"))
(:maintainer "João Távora" . "[email protected]"))])
(dash .
[(2 12 0)
nil "A modern list library for Emacs" tar
((:maintainer "Magnar Sveen" . "[email protected]")
(:authors
("Magnar Sveen" . "[email protected]"))
(: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")
(:authors
("Daiki Ueno" . "[email protected]"))
(:maintainer nil . "[email protected]"))])
(debbugs .
[(0 22)
((emacs
(25 1))
(soap-client
(3 1 5)))
"SOAP library to access debbugs servers" tar
((:maintainer "Michael Albinus" . "[email protected]")
(:authors
("Michael Albinus" . "[email protected]"))
(:keywords "comm" "hypermedia")
(:url . "http://elpa.gnu.org/packages/debbugs.html"))])
(delight .
[(1 5)
((cl-lib
(0 5))
(nadvice
(0 3)))
"A dimmer switch for your lighter text" single
((:keywords "convenience")
(:authors
("Phil Sainty" . "[email protected]"))
(:maintainer "Phil Sainty" . "[email protected]")
(:url . "https://savannah.nongnu.org/projects/delight"))])
(dict-tree .
[(0 14)
((trie
(0 3))
(tNFA
(0 1 1))
(heap
(0 3)))
"Dictionary data structure" single
((:keywords "extensions" "matching" "data structures trie" "tree" "dictionary" "completion" "regexp")
(:authors
("Toby Cubitt" . "[email protected]"))
(:maintainer "Toby Cubitt" . "[email protected]")
(:url . "http://www.dr-qubit.org/emacs.php"))])
(diff-hl .
[(1 8 7)
((cl-lib
(0 2))
(emacs
(24 3)))
"Highlight uncommitted changes using VC" tar
((:url . "https://github.com/dgutov/diff-hl")
(:maintainer "Dmitry Gutov" . "[email protected]")
(:authors
("Dmitry Gutov" . "[email protected]"))
(:keywords "vc" "diff"))])
(diffview .
[(1 0)
nil "View diffs in side-by-side format" single
((:keywords "convenience" "diff")
(:authors
("Mitchel Humpherys" . "[email protected]"))
(:maintainer "Mitchel Humpherys" . "[email protected]")
(:url . "https://github.com/mgalgs/diffview-mode"))])
(dired-du .
[(0 5 2)
((emacs
(24 4))
(cl-lib
(0 5)))
"Dired with recursive directory sizes" tar
((:maintainer "Tino Calancha" . "[email protected]")
(:authors
("Tino Calancha" . "[email protected]"))
(:keywords "files" "unix" "convenience")
(:url . "http://elpa.gnu.org/packages/dired-du.html"))])
(dired-git-info .
[(0 3 1)
((emacs
(25)))
"Show git info in dired" single
((:keywords "dired" "files")
(:authors
("Clemens Radermacher" . "[email protected]"))
(:maintainer "Clemens Radermacher" . "[email protected]")
(:url . "https://github.com/clemera/dired-git-info"))])
(disk-usage .
[(1 3 3)
((emacs
(26 1)))
"Sort and browse disk usage listings" single
((:keywords "files" "convenience" "tools")
(:authors
("Pierre Neidhardt" . "[email protected]"))
(:maintainer "Pierre Neidhardt" . "[email protected]")
(:url . "https://gitlab.com/Ambrevar/emacs-disk-usage"))])
(dismal .
[(1 5)
((cl-lib
(0)))
"Dis Mode Ain't Lotus: Spreadsheet program Emacs" tar
((:maintainer "UnMaintainer" . "[email protected]")
(:authors
(nil . "David Fox, [email protected]")
(nil . "Frank E. Ritter, [email protected]"))
(:url . "http://elpa.gnu.org/packages/dismal.html"))])
(djvu .
[(1 1)
nil "Edit and view Djvu files via djvused" single
((:url . "http://elpa.gnu.org/packages/djvu.html")
(:keywords "files" "wp")
(:authors
("Roland Winkler" . "[email protected]"))
(:maintainer "Roland Winkler" . "[email protected]"))])
(docbook .
[(0 1)
nil "Info-like viewer for DocBook" single
((:url . "http://elpa.gnu.org/packages/docbook.html")
(:keywords "docs" "help")
(:authors
("Chong Yidong" . "[email protected]"))
(:maintainer "Chong Yidong" . "[email protected]"))])
(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")
(:authors
("Ben Gamari" . "[email protected]"))
(:maintainer "Ben Gamari" . "[email protected]"))])
(easy-kill .
[(0 9 3)
((emacs
(24))
(cl-lib
(0 5)))
"kill & mark things easily" tar
((:url . "https://github.com/leoliu/easy-kill")
(:maintainer "Leo Liu" . "[email protected]")
(:authors
("Leo Liu" . "[email protected]"))
(:keywords "killing" "convenience"))])
(ebdb .
[(0 6 13)
((emacs
(25 1))
(cl-lib
(0 5))
(seq
(2 15)))
"Contact management package" tar
((:url . "https://github.com/girzel/ebdb")
(:maintainer "Eric Abrahamsen" . "[email protected]")
(:authors
("Eric Abrahamsen" . "[email protected]"))
(:keywords "convenience" "mail"))])
(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")
(:authors
("Eric Abrahamsen" . "[email protected]"))
(:maintainer "Eric Abrahamsen" . "[email protected]"))])
(ebdb-i18n-chn .
[(1 3)
((pyim
(1 6 0))
(ebdb
(0 2)))
"China-specific internationalization support for EBDB" single
((:url . "http://elpa.gnu.org/packages/ebdb-i18n-chn.html")
(:authors
("Eric Abrahamsen" . "[email protected]"))
(:maintainer "Eric Abrahamsen" . "[email protected]"))])
(ediprolog .
[(1 2)
nil "Emacs Does Interactive Prolog" single
((:keywords "languages" "processes")
(:authors
("Markus Triska" . "[email protected]"))
(:maintainer "Markus Triska" . "[email protected]")
(:url . "https://www.metalevel.at/ediprolog/"))])
(eev .
[(20191105)
((emacs
(24 1)))
"Support for e-scripts (eepitch blocks, elisp hyperlinks, etc)" tar
((:url . "http://angg.twu.net/#eev")
(:maintainer "Eduardo Ochs" . "[email protected]")
(:authors
("Eduardo Ochs" . "[email protected]"))
(:keywords "lisp" "e-scripts"))])
(eglot .
[(1 5)
((emacs
(26 1))
(jsonrpc
(1 0 7))
(flymake
(1 0 5)))
"Client for Language Server Protocol (LSP) servers" tar
((:url . "https://github.com/joaotavora/eglot")
(:maintainer "João Távora" . "[email protected]")
(:authors
("João Távora" . "[email protected]"))
(:keywords "convenience" "languages"))])
(el-search .
[(1 12 6 1)
((emacs
(25))
(stream
(2 2 4))
(cl-print
(1 0)))
"Expression based interactive search for Emacs Lisp" tar
((:maintainer "Michael Heerdegen" . "[email protected]")
(:authors
("Michael Heerdegen" . "[email protected]"))
(: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")
(:authors
("Thierry Volpiatto" . "[email protected]"))
(:maintainer "Thierry Volpiatto" . "[email protected]"))])
(electric-spacing .
[(5 0)
nil "Insert operators with surrounding spaces smartly" single
((:url . "http://elpa.gnu.org/packages/electric-spacing.html")
(:authors
("William Xu" . "[email protected]"))
(:maintainer "William Xu" . "[email protected]"))])
(elisp-benchmarks .
[(1 1)
nil "elisp benchamrks collection" tar
((:maintainer "Andrea Corallo" . "[email protected]")
(:authors
("Andrea Corallo" . "[email protected]"))
(:keywords "languages" "lisp")
(:url . "http://elpa.gnu.org/packages/elisp-benchmarks.html"))])
(enwc .
[(2 0)
((emacs
(25 1)))
"The Emacs Network Client" tar
((:url . "https://savannah.nongnu.org/p/enwc")
(:maintainer "Ian Dunn" . "[email protected]")
(:authors
("Ian Dunn" . "[email protected]"))
(:keywords "external" "network" "wicd" "manager" "nm"))])
(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")
(:authors
("Ted Zlatanov" . "[email protected]"))
(:maintainer "Ted Zlatanov" . "[email protected]"))])
(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
((:url . "https://github.com/ergoemacs/ergoemacs-mode")
(:maintainer "Matthew L. Fidler" . "[email protected]")
(:authors
("Xah Lee" . "[email protected]")
("David Capello" . "[email protected]")
("Matthew L. Fidler" . "[email protected]"))
(:keywords "convenience"))])
(excorporate .
[(0 8 3)
((emacs
(24 1))
(fsm
(0 2 1))
(soap-client
(3 1 5))
(url-http-ntlm
(2 0 4))
(nadvice
(0 3)))
"Exchange Web Services (EWS) integration" tar
((:url . "https://www.fitzsim.org/blog/")
(:maintainer "Thomas Fitzsimmons" . "[email protected]")
(:authors
("Thomas Fitzsimmons" . "[email protected]"))
(:keywords "calendar"))])
(exwm .
[(0 23)
((xelb
(0 18)))
"Emacs X Window Manager" tar
((:url . "https://github.com/ch11ng/exwm")
(:maintainer "Chris Feng" . "[email protected]")
(:authors
("Chris Feng" . "[email protected]"))
(:keywords "unix"))])
(f90-interface-browser .
[(1 1)
nil "Parse and browse f90 interfaces" single
((:authors
("Lawrence Mitchell" . "[email protected]"))
(:maintainer "Lawrence Mitchell" . "[email protected]")
(:url . "http://github.com/wence-/f90-iface/"))])
(filladapt .
[(2 12 2)
((emacs
(24 4)))
"Adaptive fill" single
((:url . "http://elpa.gnu.org/packages/filladapt.html")
(:authors
("Kyle E. Jones" . "[email protected]"))
(:maintainer nil . "[email protected]"))])
(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")
(:authors
("Barry O'Reilly" . "[email protected]"))
(:maintainer "Barry O'Reilly" . "[email protected]"))])
(flymake .
[(1 0 8)
((emacs
(26 1)))
"A universal on-the-fly syntax checker" single
((:url . "http://elpa.gnu.org/packages/flymake.html")
(:keywords "c" "languages" "tools")
(:authors
("Pavel Kobyakov" . "[email protected]"))
(:maintainer "João Távora" . "[email protected]"))])
(fountain-mode .
[(2 7 3)
((emacs
(24 5)))
"Major mode for screenwriting in Fountain markup" single
((:keywords "wp" "text")
(:authors
("Paul W. Rankin" . "[email protected]"))
(:maintainer "Paul W. Rankin" . "[email protected]")
(:url . "https://fountain-mode.org"))])
(frame-tabs .
[(1 1)
nil "show buffer tabs in side window" single
((:url . "http://elpa.gnu.org/packages/frame-tabs.html")
(:keywords "frames" "tabs")
(:authors
("Martin Rudalics" . "[email protected]"))
(:maintainer "Martin Rudalics" . "[email protected]"))])
(frog-menu .
[(0 2 10)
((emacs
(26))
(avy
(0 4))
(posframe
(0 4)))
"Quickly pick items from ad hoc menus" single
((:keywords "convenience")
(:authors
("Clemens Radermacher" . "[email protected]"))
(:maintainer "Clemens Radermacher" . "[email protected]")
(:url . "https://github.com/clemera/frog-menu"))])
(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")
(:authors
("Magnus Henoch" . "[email protected]"))
(:maintainer "Thomas Fitzsimmons" . "[email protected]"))])
(ggtags .
[(0 8 13)
((emacs
(24))
(cl-lib
(0 5)))
"emacs frontend to GNU Global source code tagging system" single
((:keywords "tools" "convenience")
(:authors
("Leo Liu" . "[email protected]"))
(:maintainer "Leo Liu" . "[email protected]")
(:url . "https://github.com/leoliu/ggtags"))])
(gited .
[(0 6 0)
((emacs
(24 4))
(cl-lib
(0 5)))
"Operate on Git branches like dired" tar
((:maintainer "Tino Calancha" . "[email protected]")
(:authors
("Tino Calancha" . "[email protected]"))
(: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")
(:authors
("Stefan Monnier" . "[email protected]"))
(:maintainer "Stefan Monnier" . "[email protected]"))])
(gnome-c-style .
[(0 1)
nil "minor mode for editing GNOME-style C source code" tar
((:maintainer "Daiki Ueno" . "[email protected]")
(:authors
("Daiki Ueno" . "[email protected]"))
(:keywords "gnome" "c" "coding style")
(:url . "http://elpa.gnu.org/packages/gnome-c-style.html"))])
(gnorb .
[(1 6 5)
((cl-lib
(0 5)))
"Glue code between Gnus, Org, and BBDB" tar
((:maintainer "Eric Abrahamsen" . "[email protected]")
(:authors
("Eric Abrahamsen" . "[email protected]"))
(:keywords "mail" "org" "gnus" "bbdb" "todo" "task")
(:url . "http://elpa.gnu.org/packages/gnorb.html"))])
(gnu-elpa-keyring-update .
[(2019 3)
nil "Update Emacs's GPG keyring for GNU ELPA" tar
((:maintainer "Stefan Monnier" . "[email protected]")
(:authors
("Stefan Monnier" . "[email protected]"))
(:keywords "maint" "tools")
(:url . "http://elpa.gnu.org/packages/gnu-elpa-keyring-update.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
((:url . "http://www.gnuvola.org/software/gnugo/")
(:maintainer "Thien-Thi Nguyen" . "[email protected]")
(:authors
("Thien-Thi Nguyen" . "[email protected]"))
(:keywords "games" "processes"))])
(gnus-mock .
[(0 4 4)
nil "Mock Gnus installation for testing" tar
((:maintainer "Eric Abrahamsen" . "[email protected]")
(:authors
("Eric Abrahamsen" . "[email protected]"))
(:url . "http://elpa.gnu.org/packages/gnus-mock.html"))])
(gpastel .
[(0 5 0)
((emacs
(25 1)))
"Integrates GPaste with the kill-ring" single
((:keywords "tools")
(:authors
("Damien Cassou" . "[email protected]"))
(:maintainer "Damien Cassou" . "[email protected]")
(:url . "https://gitlab.petton.fr/DamienCassou/desktop-environment"))])
(greader .
[(0 1)
((emacs
(25)))
"gnamù reader, a reader with espeak tts" tar
((:maintainer "Michelangelo Rodriguez" . "[email protected]")
(:authors
("Michelangelo Rodriguez" . "[email protected]"))
(:keywords "tools" "accessibility")
(:url . "http://elpa.gnu.org/packages/greader.html"))])
(guess-language .
[(0 0 1)
((cl-lib
(0 5))
(emacs
(24))
(nadvice
(0 1)))
"Robust automatic language detection" single
((:authors
("Titus von der Malsburg" . "[email protected]"))
(:maintainer "Titus von der Malsburg" . "[email protected]")
(:url . "https://github.com/tmalsburg/guess-language.el"))])
(heap .
[(0 5)
nil "Heap (a.k.a. priority queue) data structure" single
((:keywords "extensions" "data structures" "heap" "priority queue")
(:authors
("Toby Cubitt" . "[email protected]"))
(:maintainer "Toby Cubitt" . "[email protected]")
(:url . "http://www.dr-qubit.org/emacs.php"))])
(highlight-escape-sequences .
[(0 4)
nil "Highlight escape sequences" single
((:keywords "convenience")
(:authors
("Dmitry Gutov" . "[email protected]")
("Pavel Matcula" . "[email protected]"))
(:maintainer "Dmitry Gutov" . "[email protected]")
(:url . "https://github.com/dgutov/highlight-escape-sequences"))])
(hook-helpers .
[(1 1 1)
((emacs
(25 1)))
"Anonymous, modifiable hook functions" tar
((:url . "https://savannah.nongnu.org/projects/hook-helpers-el/")
(:maintainer "Ian Dunn" . "[email protected]")
(:authors
("Ian Dunn" . "[email protected]"))
(:keywords "development" "hooks"))])
(html5-schema .
[(0 1)
nil "Add HTML5 schemas for use by nXML" tar
((:url . "https://github.com/validator/validator")
(:maintainer "Stefan Monnier" . "[email protected]")
(:authors
("Stefan Monnier" . "[email protected]"))
(:keywords "html" "xml"))])
(hydra .
[(0 14 0)
((cl-lib
(0 5)))
"Make bindings that stick around." tar
((:url . "https://github.com/abo-abo/hydra")
(:maintainer "Oleh Krehel" . "[email protected]")
(:authors
("Oleh Krehel" . "[email protected]"))
(:keywords "bindings"))])
(hyperbole .
[(7 0 6)
((emacs
(24 4)))
"GNU Hyperbole: The Everyday Hypertextual Information Manager" tar
((:url . "http://www.gnu.org/software/hyperbole")
(:maintainer "Bob Weiner <[email protected]>, Mats Lidell" . "[email protected]")
(:authors
("Bob Weiner"))
(:keywords "comm" "convenience" "files" "frames" "hypermedia" "languages" "mail" "matching" "mouse" "multimedia" "outlines" "tools" "wp"))])
(ioccur .
[(2 4)
nil "Incremental occur" single