-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive-contents
5671 lines (5671 loc) · 178 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
(a .
[(20210929 1510)
((emacs
(25)))
"Associative data structure functions" single
((:commit . "9ad2d18252b729174fe22ed0b2b7670c88f60c31")
(:authors
("Arne Brasseur" . "[email protected]"))
(:maintainer "Arne Brasseur" . "[email protected]")
(:keywords "lisp")
(:url . "https://github.com/plexus/a.el"))])
(ac-ispell .
[(20151101 226)
((auto-complete
(1 4))
(cl-lib
(0 5)))
"ispell completion source for auto-complete" single
((:commit . "22bace7387e9012002a6a444922f75f9913077b0")
(:authors
("Syohei YOSHIDA" . "[email protected]"))
(:maintainer "Syohei YOSHIDA" . "[email protected]")
(:url . "https://github.com/syohex/emacs-ac-ispell"))])
(ace-jump-helm-line .
[(20160918 1836)
((avy
(0 4 0))
(helm
(1 6 3)))
"Ace-jump to a candidate in helm window" single
((:commit . "1483055255df3f8ae349f7520f05b1e43ea3ed37")
(:authors
("Junpeng Qiu" . "[email protected]"))
(:maintainer "Junpeng Qiu" . "[email protected]")
(:keywords "extensions")
(:url . "https://github.com/cute-jumper/ace-jump-helm-line"))])
(ace-jump-mode .
[(20140616 815)
nil "a quick cursor location minor mode for emacs" single
((:commit . "8351e2df4fbbeb2a4003f2fb39f46d33803f3dac")
(:authors
("winterTTr" . "[email protected]"))
(:maintainer "winterTTr" . "[email protected]")
(:keywords "motion" "location" "cursor")
(:url . "https://github.com/winterTTr/ace-jump-mode/"))])
(ace-link .
[(20210121 923)
((avy
(0 4 0)))
"Quickly follow links" single
((:commit . "e1b1c91b280d85fce2194fea861a9ae29e8b03dd")
(:authors
("Oleh Krehel" . "[email protected]"))
(:maintainer "Oleh Krehel" . "[email protected]")
(:keywords "convenience" "links" "avy")
(:url . "https://github.com/abo-abo/ace-link"))])
(ace-window .
[(20200606 1259)
((avy
(0 5 0)))
"Quickly switch windows." single
((:commit . "c7cb315c14e36fded5ac4096e158497ae974bec9")
(:authors
("Oleh Krehel" . "[email protected]"))
(:maintainer "Oleh Krehel" . "[email protected]")
(:keywords "window" "location")
(:url . "https://github.com/abo-abo/ace-window"))])
(ag .
[(20201031 2202)
((dash
(2 8 0))
(s
(1 9 0))
(cl-lib
(0 5)))
"A front-end for ag ('the silver searcher'), the C ack replacement." single
((:commit . "ed7e32064f92f1315cecbfc43f120bbc7508672c")
(:authors
("Wilfred Hughes" . "[email protected]"))
(:maintainer "Wilfred Hughes" . "[email protected]")
(:url . "https://github.com/Wilfred/ag.el"))])
(aggressive-indent .
[(20210701 2224)
((emacs
(24 3)))
"Minor mode to aggressively keep your code always indented" single
((:commit . "cb416faf61c46977c06cf9d99525b04dc109a33c")
(:authors
("Artur Malabarba" . "[email protected]"))
(:maintainer "Artur Malabarba" . "[email protected]")
(:keywords "indent" "lisp" "maint" "tools")
(:url . "https://github.com/Malabarba/aggressive-indent-mode"))])
(alchemist .
[(20180312 1304)
((elixir-mode
(2 2 5))
(dash
(2 11 0))
(emacs
(24 4))
(company
(0 8 0))
(pkg-info
(0 4))
(s
(1 11 0)))
"Elixir tooling integration into Emacs" tar
((:commit . "6f99367511ae209f8fe2c990779764bbb4ccb6ed")
(:authors
("Samuel Tonini" . "[email protected]"))
(:maintainer "Samuel Tonini" . "[email protected]")
(:keywords "languages" "elixir" "elixirc" "mix" "hex" "alchemist")
(:url . "http://www.github.com/tonini/alchemist.el"))])
(alert .
[(20200303 2118)
((gntp
(0 1))
(log4e
(0 3 0))
(cl-lib
(0 5)))
"Growl-style notification system for Emacs" single
((:commit . "7046393272686c7a1a9b3e7f7b1d825d2e5250a6")
(:authors
("John Wiegley" . "[email protected]"))
(:maintainer "John Wiegley" . "[email protected]")
(:keywords "notification" "emacs" "message")
(:url . "https://github.com/jwiegley/alert"))])
(all-the-icons .
[(20210831 1317)
((emacs
(24 3)))
"A library for inserting Developer icons" tar
((:commit . "c0d288a41faea2ecb7e8dd947486764a2ee17ec9")
(:authors
("Dominic Charlesworth" . "[email protected]"))
(:maintainer "Dominic Charlesworth" . "[email protected]")
(:keywords "convenient" "lisp")
(:url . "https://github.com/domtronn/all-the-icons.el"))])
(anaconda-mode .
[(20210714 1738)
((emacs
(25 1))
(pythonic
(0 1 0))
(dash
(2 6 0))
(s
(1 9))
(f
(0 16 2)))
"Code navigation, documentation lookup and completion for Python" tar
((:commit . "0546c093071417e4f30f505d9de09da883109cbf")
(:authors
("Artem Malyshev" . "[email protected]"))
(:maintainer "Artem Malyshev" . "[email protected]")
(:url . "https://github.com/proofit404/anaconda-mode"))])
(annalist .
[(20190929 207)
((emacs
(24 4))
(cl-lib
(0 5)))
"Record and display information such as keybindings" tar
((:commit . "134fa3f0fb91a636a1c005c483516d4b64905a6d")
(:authors
("Fox Kiester" . "[email protected]"))
(:maintainer "Fox Kiester" . "[email protected]")
(:keywords "convenience" "tools" "keybindings" "org")
(:url . "https://github.com/noctuid/annalist.el"))])
(ansi .
[(20200611 944)
((emacs
(24 1))
(cl-lib
(0 6))
(s
(1 6 1))
(dash
(1 5 0)))
"Turn string into ansi strings" single
((:commit . "a41d5cc719297515d85bb5256980cd1204a71b88")
(:authors
("Johan Andersson" . "[email protected]"))
(:maintainer "Johan Andersson" . "[email protected]")
(:keywords "terminals" "color" "ansi")
(:url . "http://github.com/rejeep/ansi"))])
(anzu .
[(20211002 2255)
((emacs
(25 1)))
"Show number of matches in mode-line while searching" single
((:commit . "5abb37455ea44fa401d5f4c1bdc58adb2448db67")
(:authors
("Syohei YOSHIDA" . "[email protected]"))
(:maintainer "Neil Okamoto" . "[email protected]")
(:url . "https://github.com/emacsorphanage/anzu"))])
(async .
[(20210823 528)
((emacs
(24 4)))
"Asynchronous processing in Emacs" tar
((:commit . "5d365ffc6a2c2041657eaa5d762c395ea748c8d7")
(:authors
("John Wiegley" . "[email protected]"))
(:maintainer "John Wiegley" . "[email protected]")
(:keywords "async")
(:url . "https://github.com/jwiegley/emacs-async"))])
(auto-compile .
[(20210820 1353)
((emacs
(25 1))
(packed
(3 0 3)))
"automatically compile Emacs Lisp libraries" single
((:commit . "ff21de70f3523afa2976d1e787e2febefeba2653")
(:authors
("Jonas Bernoulli" . "[email protected]"))
(:maintainer "Jonas Bernoulli" . "[email protected]")
(:keywords "compile" "convenience" "lisp")
(:url . "https://github.com/emacscollective/auto-compile"))])
(auto-complete .
[(20201213 1255)
((popup
(0 5 0))
(cl-lib
(0 5)))
"Auto Completion for GNU Emacs" tar
((:commit . "aafd3f566a8002a1e9b3e197721a2660c0a835ff")
(:authors
("Tomohiro Matsuyama" . "[email protected]"))
(:maintainer "Tomohiro Matsuyama" . "[email protected]")
(:keywords "completion" "convenience")
(:url . "https://github.com/auto-complete/auto-complete"))])
(auto-dictionary .
[(20150410 1610)
nil "automatic dictionary switcher for flyspell" single
((:commit . "b364e08009fe0062cf0927d8a0582fad5a12b8e7")
(:authors
("Nikolaj Schumacher <bugs * nschum de>"))
(:maintainer "Nikolaj Schumacher <bugs * nschum de>")
(:keywords "wp")
(:url . "http://nschum.de/src/emacs/auto-dictionary/"))])
(auto-highlight-symbol .
[(20211006 603)
((emacs
(26 1))
(ht
(2 3)))
"Automatic highlighting current symbol minor mode" single
((:commit . "1a54a61fda6206c5e0fa843d16635133241292ba")
(:authors
("Mitsuo Saito" . "[email protected]"))
(:maintainer "Shen, Jen-Chieh" . "[email protected]")
(:keywords "highlight" "face" "match" "convenience")
(:url . "http://github.com/jcs-elpa/auto-highlight-symbol"))])
(auto-yasnippet .
[(20191015 942)
((yasnippet
(0 13 0)))
"Quickly create disposable yasnippets" single
((:commit . "db9e0dd4335b2202cd5dac95bbbc87a1032d9bbe")
(:authors
("Oleh Krehel" . "[email protected]"))
(:maintainer "Oleh Krehel" . "[email protected]")
(:url . "https://github.com/abo-abo/auto-yasnippet"))])
(avy .
[(20201226 1734)
((emacs
(24 1))
(cl-lib
(0 5)))
"Jump to arbitrary positions in visible text and select text quickly." single
((:commit . "e92cb37457b43336b765630dbfbea8ba4be601fa")
(:authors
("Oleh Krehel" . "[email protected]"))
(:maintainer "Oleh Krehel" . "[email protected]")
(:keywords "point" "location")
(:url . "https://github.com/abo-abo/avy"))])
(bash-completion .
[(20210821 1941)
((emacs
(24 3)))
"BASH completion for the shell buffer" single
((:commit . "c5eaeed156ab906190c662d491269230967104b1")
(:authors
("Stephane Zermatten" . "[email protected]"))
(:maintainer "Stephane Zermatten" . "[email protected]")
(:keywords "shell" "bash" "bash-completion")
(:url . "http://github.com/szermatt/emacs-bash-completion"))])
(bbdb .
[(20210108 38)
nil "The Insidious Big Brother Database for GNU Emacs" tar
((:commit . "03c9ab00642fd54d7fb601f95a094b8b7f0eefb0")
(:maintainer "Roland Winkler" . "[email protected]"))])
(beacon .
[(20190104 1931)
((seq
(2 14)))
"Highlight the cursor whenever the window scrolls" single
((:commit . "bde78180c678b233c94321394f46a81dc6dce1da")
(:authors
("Artur Malabarba" . "[email protected]"))
(:maintainer "Artur Malabarba" . "[email protected]")
(:keywords "convenience")
(:url . "https://github.com/Malabarba/beacon"))])
(bind-key .
[(20210210 1609)
nil "A simple way to manage personal keybindings" single
((:commit . "a7422fb8ab1baee19adb2717b5b47b9c3812a84c")
(:authors
("John Wiegley" . "[email protected]"))
(:maintainer "John Wiegley" . "[email protected]")
(:keywords "keys" "keybinding" "config" "dotemacs")
(:url . "https://github.com/jwiegley/use-package"))])
(bind-map .
[(20161207 1511)
((emacs
(24 3)))
"Bind personal keymaps in multiple locations" single
((:commit . "bf4181e3a41463684adfffc6c5c305b30480e30f")
(:authors
("Justin Burkett" . "[email protected]"))
(:maintainer "Justin Burkett" . "[email protected]")
(:url . "https://github.com/justbur/emacs-bind-map"))])
(blacken .
[(20210406 813)
((emacs
(25 2)))
"Reformat python buffers using the \"black\" formatter" single
((:commit . "880cf502198753643a3e2ccd4131ee6973be2e8a")
(:authors
("Artem Malyshev" . "[email protected]"))
(:maintainer "Artem Malyshev" . "[email protected]")
(:url . "https://github.com/proofit404/blacken"))])
(browse-at-remote .
[(20210603 802)
((f
(0 17 2))
(s
(1 9 0))
(cl-lib
(0 5)))
"Open github/gitlab/bitbucket/stash/gist/phab/sourcehut page from Emacs" single
((:commit . "cef26f2c063f2473af42d0e126c8613fe2f709e4")
(:authors
("Rustem Muslimov" . "[email protected]"))
(:maintainer "Rustem Muslimov" . "[email protected]")
(:keywords "github" "gitlab" "bitbucket" "gist" "stash" "phabricator" "sourcehut" "pagure")
(:url . "https://github.com/rmuslimov/browse-at-remote"))])
(bui .
[(20210108 1141)
((emacs
(24 3))
(dash
(2 11 0)))
"Buffer interface library" tar
((:commit . "f3a137628e112a91910fd33c0cff0948fa58d470")
(:authors
("Alex Kost" . "[email protected]"))
(:maintainer "Alex Kost" . "[email protected]")
(:keywords "tools")
(:url . "https://github.com/alezost/bui.el"))])
(cask .
[(20211001 1042)
((emacs
(24 1))
(s
(1 8 0))
(f
(0 16 0))
(epl
(0 5))
(shut-up
(0 1 0))
(cl-lib
(0 3))
(package-build
(0))
(ansi
(0 4 1)))
"Cask: Project management for package development" tar
((:commit . "fe66b65944be8e03359ffe6f06618ecab8232f6b")
(:authors
("Johan Andersson" . "[email protected]"))
(:maintainer "Johan Andersson" . "[email protected]")
(:keywords "speed" "convenience")
(:url . "http://github.com/cask/cask"))])
(ccls .
[(20200820 308)
((emacs
(25 1))
(lsp-mode
(6 3 1))
(dash
(2 14 1)))
"ccls client for lsp-mode" tar
((:commit . "675a5704c14a27931e835a431beea3631d92e8e6")
(:authors
("Tobias Pisani, Fangrui Song"))
(:maintainer "Tobias Pisani, Fangrui Song")
(:keywords "languages" "lsp" "c++")
(:url . "https://github.com/MaskRay/emacs-ccls"))])
(centered-cursor-mode .
[(20200507 1529)
nil "cursor stays vertically centered" single
((:commit . "4093821cc9759ca5a3c6e527d4cc915fc3a5ad74")
(:authors
("André Riemann" . "[email protected]"))
(:maintainer "André Riemann" . "[email protected]")
(:keywords "convenience")
(:url . "https://github.com/andre-r/centered-cursor-mode.el"))])
(cfrs .
[(20211013 1802)
((emacs
(26 1))
(dash
(2 11 0))
(s
(1 10 0))
(posframe
(0 6 0)))
"Child-frame based read-string" single
((:commit . "c1f639d7bfd3e728cf85dbe224b06a4be76158f4")
(:authors
("Alexander Miller" . "[email protected]"))
(:maintainer "Alexander Miller" . "[email protected]")
(:url . "https://github.com/Alexander-Miller/cfrs"))])
(cider .
[(20211013 2024)
((emacs
(26))
(clojure-mode
(5 12))
(parseedn
(1 0 6))
(pkg-info
(0 4))
(queue
(0 2))
(spinner
(1 7))
(seq
(2 22))
(sesman
(0 3 2)))
"Clojure Interactive Development Environment that Rocks" tar
((:commit . "0a9d0ef429e76ee36c34e116c4633c69cea96c67")
(:authors
("Tim King" . "[email protected]")
("Phil Hagelberg" . "[email protected]")
("Bozhidar Batsov" . "[email protected]")
("Artur Malabarba" . "[email protected]")
("Hugo Duncan" . "[email protected]")
("Steve Purcell" . "[email protected]"))
(:maintainer "Bozhidar Batsov" . "[email protected]")
(:keywords "languages" "clojure" "cider")
(:url . "http://www.github.com/clojure-emacs/cider"))])
(cider-eval-sexp-fu .
[(20190311 2152)
((emacs
(24))
(eval-sexp-fu
(0 5 0)))
"Briefly highlights an evaluated sexp." single
((:commit . "7fd229f1441356866aedba611fd0cf4e89b50921")
(:authors
("Sylvain Benner" . "[email protected]"))
(:maintainer "Sylvain Benner" . "[email protected]")
(:keywords "languages" "clojure" "cider"))])
(clang-format .
[(20191106 950)
((cl-lib
(0 3)))
"Format code using clang-format" single
((:commit . "e48ff8ae18dc7ab6118c1f6752deb48cb1fc83ac")
(:keywords "tools" "c"))])
(clang-format+ .
[(20190824 2216)
((emacs
(25 1))
(clang-format
(20180406 1514)))
"Minor mode for automatic clang-format application" single
((:commit . "ddd4bfe1a13c2fd494ce339a320a51124c1d2f68")
(:keywords "c" "c++" "clang-format")
(:url . "https://github.com/SavchenkoValeriy/emacs-clang-format-plus"))])
(clean-aindent-mode .
[(20171017 2043)
nil "Simple indent and unindent, trims indent white-space" single
((:commit . "a97bcae8f43a9ff64e95473e4ef0d8bafe829211")
(:authors
("peter marinov" . "[email protected]"))
(:maintainer "peter marinov" . "[email protected]")
(:keywords "indentation" "whitespace" "backspace")
(:url . "https://github.com/pmarinov/clean-aindent-mode"))])
(clj-refactor .
[(20211018 1836)
((emacs
(26 1))
(seq
(2 19))
(yasnippet
(0 6 1))
(paredit
(24))
(multiple-cursors
(1 2 2))
(clojure-mode
(5 9))
(cider
(1 0))
(parseedn
(1 0 46))
(inflections
(2 3))
(hydra
(0 13 2)))
"A collection of commands for refactoring Clojure code" tar
((:commit . "4cb75bd6a2fcb376455e8b4f3edee509f87b86b8")
(:authors
("Magnar Sveen" . "[email protected]")
("Lars Andersen" . "[email protected]")
("Benedek Fazekas" . "[email protected]")
("Bozhidar Batsov" . "[email protected]"))
(:maintainer "Magnar Sveen" . "[email protected]")
(:keywords "convenience" "clojure" "cider"))])
(clojure-mode .
[(20210821 2010)
((emacs
(25 1)))
"Major mode for Clojure code" single
((:commit . "e1dc7caee76d117a366f8b8b1c2da7e6400636a8")
(:maintainer "Bozhidar Batsov" . "[email protected]")
(:keywords "languages" "clojure" "clojurescript" "lisp")
(:url . "http://github.com/clojure-emacs/clojure-mode"))])
(clojure-snippets .
[(20180314 1308)
((yasnippet
(0 10 0)))
"Yasnippets for clojure" tar
((:commit . "6068dca90467a0f4ebc2cd39338a173d6f5ddc04")
(:authors
("Max Penet" . "[email protected]"))
(:maintainer "Max Penet" . "[email protected]")
(:keywords "snippets"))])
(closql .
[(20210927 2245)
((emacs
(25 1))
(emacsql-sqlite
(3 0 0)))
"store EIEIO objects using EmacSQL" single
((:commit . "15f906c393db1a0fb6577afc3cf59466531eafef")
(:authors
("Jonas Bernoulli" . "[email protected]"))
(:maintainer "Jonas Bernoulli" . "[email protected]")
(:keywords "extensions")
(:url . "https://github.com/emacscollective/closql"))])
(column-enforce-mode .
[(20200605 1933)
nil "Highlight text that extends beyond a column" single
((:commit . "14a7622f2268890e33536ccd29510024d51ee96f")
(:authors
("Jordon Biondo"))
(:maintainer "Jordon Biondo")
(:url . "www.github.com/jordonbiondo/column-enforce-mode"))])
(command-log-mode .
[(20151208 752)
nil "log keyboard commands to buffer" single
((:commit . "71fb6031721716f48c0cfa333a44d7adbe2fab96")
(:authors
("Michael Weber" . "[email protected]"))
(:maintainer "Michael Weber" . "[email protected]")
(:keywords "help")
(:url . "https://github.com/lewang/command-log-mode"))])
(company .
[(20211002 1732)
((emacs
(25 1)))
"Modular text completion framework" tar
((:commit . "4c08ef468678bbf3b3c9e750f6e694eea1aa8423")
(:authors
("Nikolaj Schumacher"))
(:maintainer "Dmitry Gutov" . "[email protected]")
(:keywords "abbrev" "convenience" "matching")
(:url . "http://company-mode.github.io/"))])
(company-anaconda .
[(20200404 1859)
((company
(0 8 0))
(anaconda-mode
(0 1 1))
(cl-lib
(0 5 0))
(dash
(2 6 0))
(s
(1 9)))
"Anaconda backend for company-mode" single
((:commit . "da1566db41a68809ef7f91ebf2de28118067c89b")
(:authors
("Artem Malyshev" . "[email protected]"))
(:maintainer "Artem Malyshev" . "[email protected]")
(:url . "https://github.com/proofit404/anaconda-mode"))])
(company-auctex .
[(20200529 1835)
((yasnippet
(0 8 0))
(company
(0 8 0))
(auctex
(11 87)))
"Company-mode auto-completion for AUCTeX" single
((:commit . "9400a2ec7459dde8cbf1a5d50dfee4e300ed7e18")
(:authors
("Christopher Monsanto <[email protected]>, Alexey Romanov" . "[email protected]"))
(:maintainer "Christopher Monsanto <[email protected]>, Alexey Romanov" . "[email protected]")
(:url . "https://github.com/alexeyr/company-auctex/"))])
(company-c-headers .
[(20190825 1631)
((emacs
(24 1))
(company
(0 8)))
"Company mode backend for C/C++ header files" single
((:commit . "9d384571b1190e99d0a789e5296176d69a3d0771")
(:authors
("Alastair Rankine" . "[email protected]"))
(:maintainer "Alastair Rankine" . "[email protected]")
(:keywords "development" "company"))])
(company-go .
[(20170825 1643)
((company
(0 8 0))
(go-mode
(1 0 0)))
"company-mode backend for Go (using gocode)" single
((:commit . "31948b463f2fc18f8801e5a8fe511fef300eb3dd")
(:authors
("nsf" . "[email protected]"))
(:maintainer "nsf" . "[email protected]")
(:keywords "languages"))])
(company-quickhelp .
[(20210515 2212)
((emacs
(24 3))
(company
(0 8 9))
(pos-tip
(0 4 6)))
"Popup documentation for completion candidates" single
((:commit . "530b29380f0f95ae338cbe089693d786e6f53d86")
(:authors
("Lars Andersen" . "[email protected]"))
(:maintainer "Lars Andersen" . "[email protected]")
(:keywords "company" "popup" "documentation" "quickhelp")
(:url . "https://www.github.com/expez/company-quickhelp"))])
(company-reftex .
[(20210418 1316)
((emacs
(25 1))
(s
(1 12))
(company
(0 8)))
"Company backend based on RefTeX." single
((:commit . "42eb98c6504e65989635d95ab81b65b9d5798e76")
(:authors
("Eivind Fonn" . "[email protected]"))
(:maintainer "Eivind Fonn" . "[email protected]")
(:keywords "bib" "tex" "company" "latex" "reftex" "references" "labels" "citations")
(:url . "https://github.com/TheBB/company-reftex"))])
(company-rtags .
[(20191222 920)
((emacs
(24 3))
(company
(0 8 1))
(rtags
(2 10)))
"RTags back-end for company" single
((:commit . "cdff9b47fc17710aad7815652490c3c620b5e792")
(:authors
("Jan Erik Hanssen" . "[email protected]")
("Anders Bakken" . "[email protected]"))
(:maintainer "Jan Erik Hanssen" . "[email protected]")
(:url . "https://github.com/Andersbakken/rtags"))])
(company-shell .
[(20211013 1725)
((emacs
(24 4))
(company
(0 8 12))
(dash
(2 12 0))
(cl-lib
(0 5)))
"Company mode backend for shell functions" single
((:commit . "a77f4de75912aa87314cde92c603b831d5050246")
(:authors
("Alexander Miller" . "[email protected]"))
(:maintainer "Alexander Miller" . "[email protected]")
(:keywords "company" "shell" "auto-completion")
(:url . "https://github.com/Alexander-Miller/company-shell"))])
(company-statistics .
[(20170210 1933)
((emacs
(24 3))
(company
(0 8 5)))
"Sort candidates using completion history" single
((:commit . "e62157d43b2c874d2edbd547c3bdfb05d0a7ae5c")
(:authors
("Ingo Lohmar" . "[email protected]"))
(:maintainer "Ingo Lohmar" . "[email protected]")
(:keywords "abbrev" "convenience" "matching")
(:url . "https://github.com/company-mode/company-statistics"))])
(company-web .
[(20180402 1155)
((company
(0 8 0))
(dash
(2 8 0))
(cl-lib
(0 5 0))
(web-completion-data
(0 1 0)))
"Company version of ac-html, complete for web,html,emmet,jade,slim modes" tar
((:commit . "f0cc9187c9c34f72ad71f5649a69c74f996bae9a")
(:authors
("Olexandr Sydorchuk" . "[email protected]"))
(:maintainer "Olexandr Sydorchuk" . "[email protected]")
(:keywords "html" "company")
(:url . "https://github.com/osv/company-web"))])
(company-ycmd .
[(20180520 1053)
((ycmd
(1 3))
(company
(0 9 3))
(deferred
(0 5 1))
(s
(1 11 0))
(dash
(2 13 0))
(let-alist
(1 0 5))
(f
(0 19 0)))
"company-mode backend for ycmd" single
((:commit . "c17ff9e0250a9b39d23af37015a2b300e2f36fed")
(:url . "https://github.com/abingham/emacs-ycmd"))])
(concurrent .
[(20161229 330)
((emacs
(24 3))
(deferred
(0 5 0)))
"Concurrent utility functions for emacs lisp" single
((:commit . "2239671d94b38d92e9b28d4e12fd79814cfb9c16")
(:authors
("SAKURAI Masashi <m.sakurai at kiwanami.net>"))
(:maintainer "SAKURAI Masashi <m.sakurai at kiwanami.net>")
(:keywords "deferred" "async" "concurrent")
(:url . "https://github.com/kiwanami/emacs-deferred/blob/master/README-concurrent.markdown"))])
(consult .
[(20211018 1957)
((emacs
(26 1)))
"Consulting completing-read" tar
((:commit . "67fa3a253e838fe496a2376123a867d8ba15f857")
(:authors
("Daniel Mendler and Consult contributors"))
(:maintainer "Daniel Mendler" . "[email protected]")
(:url . "https://github.com/minad/consult"))])
(counsel .
[(20210928 949)
((emacs
(24 5))
(ivy
(0 13 4))
(swiper
(0 13 4)))
"Various completion functions using Ivy" single
((:commit . "1c6b3da377a840e898b14020133f59fca9ceea1c")
(:authors
("Oleh Krehel" . "[email protected]"))
(:maintainer "Oleh Krehel" . "[email protected]")
(:keywords "convenience" "matching" "tools")
(:url . "https://github.com/abo-abo/swiper"))])
(counsel-css .
[(20210310 452)
((emacs
(24 4))
(counsel
(0 7 0))
(cl-lib
(0 5)))
"stylesheet-selector-aware swiper" single
((:commit . "f7647b4195b9b4e97f1ee1acede6054ae38df630")
(:authors
("Henrik Lissner <http://github/hlissner>"))
(:maintainer "Henrik Lissner" . "[email protected]")
(:keywords "convenience" "tools" "counsel" "swiper" "selector" "css" "less" "scss")
(:url . "https://github.com/hlissner/emacs-counsel-css"))])
(counsel-dash .
[(20200103 1411)
((emacs
(24 4))
(dash-docs
(1 4 0))
(counsel
(0 8 0))
(cl-lib
(0 5)))
"Browse dash docsets using Ivy" single
((:commit . "370d5f6f14b5294d0eb717f7b2a6a8e93df1ed24")
(:authors
("Nathan Kot" . "[email protected]"))
(:maintainer "Nathan Kot" . "[email protected]")
(:keywords "dash" "ivy" "counsel")
(:url . "https://github.com/nathankot/counsel-dash"))])
(counsel-projectile .
[(20211004 2003)
((counsel
(0 13 4))
(projectile
(2 5 0)))
"Ivy integration for Projectile" single
((:commit . "e30150792a96968f55f34638cbfe63eaa30839cc")
(:authors
("Eric Danan"))
(:maintainer "Eric Danan")
(:keywords "project" "convenience")
(:url . "https://github.com/ericdanan/counsel-projectile"))])
(cpp-auto-include .
[(20210318 2217)
((cl-lib
(0 5)))
"Insert and delete C++ header files automatically" single
((:commit . "0ce829f27d466c083e78b9fe210dcfa61fb417f4")
(:authors
("Syohei YOSHIDA" . "[email protected]"))
(:maintainer "Syohei YOSHIDA" . "[email protected]")
(:url . "https://github.com/emacsorphanage/cpp-auto-include"))])
(cquery .
[(20190118 542)
((emacs
(25 1))
(lsp-mode
(3 4))
(dash
(0 13)))
"cquery client for lsp-mode" tar
((:commit . "555e50984ebda177421fdcdc8c76cb29235d9694")
(:authors
("Tobias Pisani"))
(:maintainer "Tobias Pisani")
(:keywords "languages" "lsp" "c++")
(:url . "https://github.com/jacobdufault/cquery"))])
(creole .
[(20140924 1500)
((noflet
(0 0 3))
(kv
(0 0 17)))
"A parser for the Creole Wiki language" single
((:commit . "7d5cffe93857f6c75ca09ac79c0e47b8d4410e53")
(:authors
("Nic Ferrier" . "[email protected]"))
(:maintainer "Nic Ferrier" . "[email protected]")
(:keywords "lisp" "creole" "wiki"))])
(csv .
[(20161113 1510)
nil "Functions for reading and parsing CSV files." single
((:commit . "aa1dfa1263565d5fac3879c21d8ddf5f8915e411")
(:authors
("Ulf Jasper" . "[email protected]"))
(:maintainer "Ulf Jasper" . "[email protected]")
(:keywords "extensions" "data" "csv"))])
(ctable .
[(20210128 629)
((emacs
(24 3))
(cl-lib
(0 5)))
"Table component for Emacs Lisp" single
((:commit . "48b73742757a3ae5736d825fe49e00034cc453b5")
(:authors
("SAKURAI Masashi <m.sakurai at kiwanami.net>"))
(:maintainer "SAKURAI Masashi <m.sakurai at kiwanami.net>")
(:keywords "table")
(:url . "https://github.com/kiwanami/emacs-ctable"))])
(cython-mode .
[(20190111 2150)
nil "Major mode for editing Cython files" single
((:commit . "42a4af2ffdf96949a33684c1a692803bbb519362"))])
(dap-mode .
[(20211016 1758)
((emacs
(26 1))
(dash
(2 18 0))
(lsp-mode
(6 0))
(bui
(1 1 0))
(f
(0 20 0))
(s
(1 12 0))
(lsp-treemacs
(0 1))
(posframe
(0 7 0))
(ht
(2 3)))
"Debug Adapter Protocol mode" tar
((:commit . "01e8f0fa8687e0cee5ac1f7ceb82a7d18a18416e")
(:authors
("Ivan Yonchovski" . "[email protected]"))
(:maintainer "Ivan Yonchovski" . "[email protected]")
(:keywords "languages" "debug")
(:url . "https://github.com/emacs-lsp/dap-mode"))])
(dash .
[(20210826 1149)
((emacs
(24)))
"A modern list library for Emacs" tar
((:commit . "da167c51e9fd167a48d06c7c0ee8e3ac7abd9718")
(:authors
("Magnar Sveen" . "[email protected]"))
(:maintainer "Magnar Sveen" . "[email protected]")
(:keywords "extensions" "lisp")
(:url . "https://github.com/magnars/dash.el"))])
(dash-at-point .
[(20180710 1356)
nil "Search the word at point with Dash" single
((:commit . "4d795a23a8428c421d5107f1b005c9d8e0d1816c")
(:authors
("Shinji Tanaka" . "[email protected]"))
(:maintainer "Shinji Tanaka" . "[email protected]")
(:url . "https://github.com/stanaka/dash-at-point"))])
(dash-docs .
[(20210830 926)
((emacs
(24 4))
(cl-lib
(0 5))
(async
(1 9 3)))
"Offline documentation browser using Dash docsets." tar
((:commit . "29848b6b347ac520f7646c200ed2ec36cea3feda")
(:authors
("Raimon Grau" . "[email protected]")
("Toni Reina " . "[email protected]")
("Bryan Gilbert" . "[email protected]"))
(:maintainer "Raimon Grau" . "[email protected]")
(:keywords "docs")
(:url . "http://github.com/areina/helm-dash"))])
(dash-functional .
[(20210210 1449)
((dash
(2 18 0)))
"Collection of useful combinators for Emacs Lisp" single
((:commit . "da167c51e9fd167a48d06c7c0ee8e3ac7abd9718")
(:authors
("Matus Goljer" . "[email protected]")
("Magnar Sveen" . "[email protected]"))
(:maintainer "Matus Goljer" . "[email protected]")
(:keywords "extensions" "lisp")
(:url . "https://github.com/magnars/dash.el"))])
(db .
[(20140421 2111)
((kv
(0 0 11)))
"A database for EmacsLisp" single
((:commit . "b3a423fb8e72f9013009cbe033d654df2ce31438")
(:authors
("Nic Ferrier" . "[email protected]"))
(:maintainer "Nic Ferrier" . "[email protected]")
(:keywords "data" "lisp"))])
(default-text-scale .
[(20191226 2234)
((emacs
(24)))
"Easily adjust the font size in all frames" single
((:commit . "bfc0987c37e93742255d3b23d86c17096fda8e7e")
(:authors
("Steve Purcell" . "[email protected]"))
(:maintainer "Steve Purcell" . "[email protected]")
(:keywords "frames" "faces")
(:url . "https://github.com/purcell/default-text-scale"))])
(deferred .
[(20170901 1330)
((emacs
(24 4)))