1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
|
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2017 Oleg Pykhalov <go.wigust@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
(define-module (wigust packages emacs)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix git-download)
#:use-module (guix gexp)
#:use-module (guix monads)
#:use-module (guix store)
#:use-module (guix build-system gnu)
#:use-module (guix build-system emacs)
#:use-module (guix build-system glib-or-gtk)
#:use-module (guix build-system trivial)
#:use-module (gnu packages)
#:use-module (gnu packages audio)
#:use-module (gnu packages bash)
#:use-module (gnu packages shells)
#:use-module (gnu packages chez)
#:use-module (gnu packages code)
#:use-module (gnu packages guile)
#:use-module (gnu packages gtk)
#:use-module (gnu packages gnome)
#:use-module (gnu packages ncurses)
#:use-module (gnu packages python)
#:use-module (gnu packages haskell)
#:use-module (gnu packages tex)
#:use-module (gnu packages texinfo)
#:use-module (gnu packages tcl)
#:use-module (gnu packages tls)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages xorg)
#:use-module (gnu packages lesstif)
#:use-module (gnu packages image)
#:use-module (gnu packages mail)
#:use-module (gnu packages linux)
#:use-module (gnu packages version-control)
#:use-module (gnu packages imagemagick)
#:use-module (gnu packages w3m)
#:use-module (gnu packages wget)
#:use-module (gnu packages autotools)
#:use-module (gnu packages base)
#:use-module (gnu packages compression)
#:use-module (gnu packages xml)
#:use-module (gnu packages glib)
#:use-module (gnu packages acl)
#:use-module (gnu packages package-management)
#:use-module (gnu packages perl)
#:use-module (gnu packages pdf)
#:use-module (gnu packages scheme)
#:use-module (gnu packages statistics)
#:use-module (gnu packages xiph)
#:use-module (gnu packages mp3)
#:use-module (gnu packages gettext)
#:use-module (gnu packages fribidi)
#:use-module (gnu packages gd)
#:use-module (gnu packages fontutils)
#:use-module (gnu packages ocaml)
#:use-module (gnu packages emacs)
#:use-module (guix utils)
#:use-module (srfi srfi-1)
#:use-module (ice-9 match))
(define-public emacs-company-lua
(let ((commit "0be8122f3adf57ad27953bf4b03545d6298d3da4")
(revision "1"))
(package
(name "emacs-company-lua")
(version "0.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/ptrv/company-lua.git")
(commit commit)))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"1d9i165apgmwns7b2fd5wcpjpkah3dyj20v5sb8ynvz6qhhr5r9c"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-company" ,emacs-company)
("emacs-s" ,emacs-s)
("emacs-f" ,emacs-f)
("emacs-lua-mode" ,emacs-lua-mode)))
(home-page "https://github.com/ptrv/company-lua")
(synopsis "Company backend for Lua")
(description "Company backend for Lua")
(license license:gpl3+))))
(define-public emacs-company-tern
(package
(name "emacs-company-tern")
(version "0.3.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/proofit404/company-tern/archive/"
"v" version ".tar.gz"))
(sha256
(base32
"1qgrgnbajgnsnx4az4ajnlrhc73q0xxjikk617nf3cs87x4772a6"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-company" ,emacs-company)
("emacs-tern" ,emacs-tern)
("emacs-dash" ,emacs-dash)
("emacs-s" ,emacs-s)))
(home-page "https://github.com/proofit404/company-tern")
(synopsis "Tern backend for company-mode")
(description "Tern backend for company-mode.")
(license license:gpl3+)))
(define-public emacs-discover-my-major
(package
(name "emacs-discover-my-major")
(version "1.0")
(source
(origin
(method url-fetch)
(uri
(string-append "https://github.com/steckerhalter/discover-my-major"
"/archive/" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0nah41f92rrl2l405kpqr6iaks11jyclgl4z7ilfymbr4ifmsiyl"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-makey" ,emacs-makey)))
(home-page
"https://github.com/steckerhalter/discover-my-major")
(synopsis "Discover key bindings for the current Emacs major mode")
(description
"Discover key bindings and their meaning for the current Emacs major mode ")
(license license:gpl3+)))
(define-public emacs-dumb-jump
(package
(name "emacs-dumb-jump")
(version "0.5.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/jacktasia/dumb-jump/archive/"
"v" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"14sfnlgfc81y2il5v0njvmdh39lxpy8kz4j0prlc2rzd2bk0a8n5"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-f" ,emacs-f)
("emacs-s" ,emacs-s)
("emacs-dash" ,emacs-dash)
("emacs-popup" ,emacs-popup)))
(home-page "https://github.com/jacktasia/dumb-jump")
(synopsis "Jump to definition for multiple languages without configuration")
(description "Dumb Jump is an Emacs \"jump to definition\" package with
support for multiple programming languages that favors \"just working\" over
speed or accuracy. This means minimal -- and ideally zero -- configuration
with absolutely no stored indexes (TAGS) or persistent background processes.
Dumb Jump performs best with The Silver Searcher `ag` or ripgrep `rg`
installed. Dumb Jump requires at least GNU Emacs 24.3. ")
(license license:gpl3+)))
(define-public emacs-edit-indirect
(package
(name "emacs-edit-indirect")
(version "0.1.4")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/Fanael/edit-indirect/archive/"
version ".tar.gz"))
(sha256
(base32
"07kr58rd1p5j764wminsssazr73hy51yw8iqcsv5z2dwgj7msv71"))))
(build-system emacs-build-system)
(home-page "https://github.com/Fanael/edit-indirect")
(synopsis "Edit regions in separate buffers")
(description "Edit regions in separate buffers, like
@code{org-edit-src-code} but for arbitrary regions.")
(license license:gpl3+)))
(define-public emacs-edit-server
(package
(name "emacs-edit-server")
(version "1.13")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/stsquad/emacs_chrome/archive/"
"v" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1r92kqggslqasza718z4ka883mqfbnibdm43f0j9gaipk0msm2wf"))))
(build-system emacs-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'chdir-elisp
;; Elisp directory is not in root of the source.
(lambda _
(chdir "servers"))))))
(home-page "https://github.com/stsquad/emacs_chrome")
(synopsis "Server that responds to edit requests from Chromium")
(description "Provides an edit server to respond to requests from Emacs.
To open pages for editing in new buffers in your existing Emacs
instance:
@code{(when (require 'edit-server nil t)
(setq edit-server-new-frame nil)
(edit-server-start))}
To open pages for editing in new frames using a running emacs
started in --daemon mode:
@code{(when (and (require 'edit-server nil t) (daemonp))
(edit-server-start))}
Buffers are edited in `text-mode' by default; to use a different
major mode, change `edit-server-default-major-mode' or customize
`edit-server-url-major-mode-alist' to specify major modes based
on the remote URL:
@code{(setq edit-server-url-major-mode-alist
'((\"github\\\\.com\" . markdown-mode)))}
Alternatively, set the mode in `edit-server-start-hook'. For
example:
@code{(add-hook 'edit-server-start-hook
(lambda ()
(when (string-match \"github.com\" (buffer-name))
(markdown-mode))))}")
(license license:gpl3+)))
(define-public emacs-elisp-refs
(package
(name "emacs-elisp-refs")
(version "1.2")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/Wilfred/elisp-refs/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0fj6wphwrvbslw46w7wgdk3b4bfr312ygj3lbgr9qw63lpqw26nl"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-dash" ,emacs-dash)
("emacs-f" ,emacs-f)
("emacs-list-utils" ,emacs-list-utils)
("emacs-loop" ,emacs-loop)
("emacs-s" ,emacs-s)))
(home-page "https://github.com/Wilfred/elisp-refs")
(synopsis "Find callers of elisp functions or macros")
(description "Find references to functions, macros or variables. Unlike a
dumb text search, @code{elisp-refs} actually parses the code, so it's never
confused by comments or @code{foo-bar} matching @code{foo}.")
(license license:gpl3+)))
(define-public emacs-helm-youtube
(let ((revision "1")
(commit "202c27fc3b54927611e9d9c764465e1b42ef7e41"))
(package
(name "emacs-helm-youtube")
(version "1.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/maximus12793/helm-youtube.git")
(commit commit)))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"1wqxcz03fq2z31a1n90dg9ap3451vx1376ijbpfy9sg66pgj8yxv"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-request" ,emacs-request)
("emacs-helm" ,emacs-helm)))
(home-page "https://github.com/maximus12793/helm-youtube")
(synopsis "Query YouTube and play videos in your browser")
(description "This package provides an interactive prompt to search on
Youtube.")
(license license:gpl3+))))
(define-public emacs-helpful
(package
(name "emacs-helpful")
(version "0.1")
(source (origin
(method url-fetch)
(uri (string-append
"https://github.com/Wilfred/helpful/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"16dx566qzrjj0bf43lnw7h1qlvgs94brqplamw8kppp2ylr72qs9"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-elisp-refs" ,emacs-elisp-refs)))
(home-page "https://github.com/Wilfred/helpful")
(synopsis "More contextual information in Emacs help")
(description "@code{helpful} is an alternative to the built-in Emacs help
that provides much more contextual information.
@itemize
@item Show the source code for interactively defined functions (unlike the
built-in Help).
@item Fall back to the raw sexp if no source is available.
@item Show where a function is being called.
@item Docstrings will Highlight the summary (the first sentence), include
cross-references, hide superfluous puncuation.
@item Show you the properties that have been applied to the current
symbol. This provides visibility of features like edebug or byte-code
optimisation.
@item Provide a separate @code{helpful-command} function to view interactive
functions.
@item Display any keybindings that apply to interactive functions.
@item Trace, disassemble functions from inside Helpful. This is discoverable
and doesn't require memorisation of commands.
@end itemize\n")
(license license:gpl3+)))
(define-public emacs-highlight-defined
(package
(name "emacs-highlight-defined")
(version "0.1.5")
(source
(origin
(method url-fetch)
(uri (string-append
"https://github.com/Fanael/highlight-defined/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1ryd66989b5byqdw8jmjrjf0c78iiz72wibld750skcnj5h5h506"))))
(build-system emacs-build-system)
(home-page "https://github.com/Fanael/highlight-defined")
(synopsis "Syntax highlighting of known Elisp symbols")
(description "Minor mode providing syntax highlighting of known Emacs Lisp
symbols. Currently the code distinguishes Lisp functions, built-in functions,
macros, faces and variables. To enable call @code{highlight-defined-mode}. ")
(license license:gpl3+)))
(define-public emacs-highlight-numbers
(package
(name "emacs-highlight-numbers")
(version "0.2.3")
(source
(origin
(method url-fetch)
(uri (string-append
"https://github.com/Fanael/highlight-numbers/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"030v5p11d4n0581ncv499l1fqrmfziy756q6378x2bv22ixghqqp"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-parent-mode" ,emacs-parent-mode)))
(home-page "https://github.com/Fanael/highlight-numbers")
(synopsis "Highlight numbers in source code")
(description "@code{highlight-numbers-mode} provides a minor mode for
syntax highlighting of numeric literals in source code.
It s customizable: it's easy to add or redefine what exactly consitutes a
\"number\" in given major mode. See @code{highlight-numbers-modelist}.")
(license license:gpl3+)))
(define-public emacs-indium
(package
(name "emacs-indium")
(version "0.7.3")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/NicolasPetton/Indium/archive/"
version ".tar.gz"))
(sha256
(base32
"1r4cag75w11giihh5kkczppqibwc0qr237s5p00y5cvv6z3hhy8g"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-seq" ,emacs-seq)
("emacs-js2-mode" ,emacs-js2-mode)
("emacs-company" ,emacs-company)
("emacs-websocket" ,emacs-websocket)
("emacs-memoize" ,emacs-memoize)
("emacs-sourcemap" ,emacs-sourcemap)))
(home-page "https://github.com/NicolasPetton/indium")
(synopsis "JavaScript Awesome Development Environment")
(description "Indium connects to a browser tab or nodejs process and
provides many features for JavaScript development, including a REPL (with auto
completion) & object inspection, an inspector, with history and navigation,
and even a stepping Debugger, similar to @code{edebug}, or @code{cider}.")
(license license:gpl3+)))
(define-public emacs-list-utils
(package
(name "emacs-list-utils")
(version "0.4.4")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/rolandwalker/list-utils/archive/"
"v" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1xc1xh8c82h5gdjbgpdsdclgwxkxbb7h3x3a2bscpm41g8pnan4p"))))
(build-system emacs-build-system)
(home-page "http://github.com/rolandwalker/list-utils")
(synopsis "List-manipulation utility functions")
(description "List manipulation library for Emacs.")
(license license:gpl3+)))
(define-public emacs-loop
(package
(name "emacs-loop")
(version "1.3")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/Wilfred/loop.el/archive/"
version ".tar.gz"))
(sha256
(base32
"1z3rhh3zyjabz36410yz0lp4a0qwwj0387as662wvx3z9y54jia9"))))
(build-system emacs-build-system)
(home-page "https://github.com/Wilfred/loop.el")
(synopsis "Imperative loop structures for Emacs")
(description "Loop structures familiar to users of other languages. This
library adds a selection of popular loop structures as well as break and
continue.")
(license license:gpl3+)))
(define-public emacs-makey
(package
(name "emacs-makey")
(version "0.3")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/mickeynp/makey/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0kzl4q1wf2zhkx9nrymxa67n99iq0bj7zqhpaz4byksna1hsxfmv"))))
(build-system emacs-build-system)
(home-page "https://github.com/mickeynp/makey")
(synopsis "Interactive commandline mode")
(description "Interactive commandline mode")
(license license:gpl3+)))
(define-public emacs-nnreddit
(let ((commit "9843f99d01fd8f1eea2fc685965a7c7f4eeb187a")
(revision "1"))
(package
(name "emacs-nnreddit")
(version (string-append "0.0.1-" revision "."
(string-take commit 7)))
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/paul-issartel/nnreddit.git")
(commit commit)))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"0j4h3bnga640250jdq8bwyja49r41ssrsjd6lba4gzzllqk02nbn"))))
(build-system emacs-build-system)
(home-page "https://github.com/paul-issartel/nnreddit")
(synopsis "Reddit backend for the Gnus newsreader")
(description "@url{https://www.reddit.com} backend for the Gnus
newsreader.")
(license license:gpl3+))))
(define-public emacs-npm-mode
(package
(name "emacs-npm-mode")
(version "0.6.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/mojochao/npm-mode/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1kq1ww22dwf8c2i2b4z2ldbbmnihj65kb7n5vzvwkch9h4hxpqh5"))))
(build-system emacs-build-system)
(home-page "https://github.com/mojochao/npm-mode")
(synopsis "Minor mode for working with npm projects")
(description "@code{npm-mode} provides a minor mode to work with npm
projects.")
(license license:gpl3+)))
(define-public emacs-org-protocol-capture-html
(let ((commit "0e39b7e2261599d28e6bbd094a0657d9315719bc")
(revision "1"))
(package
(name "emacs-org-protocol-capture-html")
(version (string-append "0.0.1-" revision "."
(string-take commit 7)))
(source
(origin
(method git-fetch)
(uri
(git-reference
(url "https://github.com/alphapapa/org-protocol-capture-html.git")
(commit commit)))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"0l80nb2dxfm1bws1rqqkavswnpyqbwlv84q1zp4lrsfarjb3l56c"))))
(build-system emacs-build-system)
(propagated-inputs
`(("pandoc" ,ghc-pandoc)))
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'install 'install-shell-script
(lambda* (#:key outputs #:allow-other-keys)
(install-file "org-protocol-capture-html.sh"
(string-append (assoc-ref outputs "out")
"/bin")))))))
(home-page "https://github.com/alphapapa/org-protocol-capture-html.git")
(synopsis "Captures Web pages into Org using Pandoc to process HTML")
(description "This package captures Web pages into Org-mode using Pandoc to
process HTML. It can also use eww's eww-readable functionality to
get the main content of a page.
These are the helper functions that run in Emacs. To capture pages
into Emacs, you can use either a browser bookmarklet or the
org-protocol-capture-html.sh shell script. See the README.org file
for instructions.")
(license license:gpl3+))))
(define-public emacs-parent-mode
(package
(name "emacs-parent-mode")
(version "2.3")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/Fanael/parent-mode/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0gxbl5s1w96v6v55b7aaansgw4sxhzfx9nrsvpk3pfhsibs6yqjd"))))
(build-system emacs-build-system)
(home-page "https://github.com/Fanael/parent-mode")
(synopsis "Get major mode's parent modes")
(description "Get major mode's parent modes")
(license license:gpl3+)))
(define-public emacs-rjsx-mode
(package
(name "emacs-rjsx-mode")
(version "0.2.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/felipeochoa/rjsx-mode/archive/"
"v" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1vlk298g79nz0cw5sgnp2683gr72x5sfsqbyxjsg521ka3lyjq98"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-js2-mode" ,emacs-js2-mode)))
(home-page "https://github.com/felipeochoa/rjsx-mode/")
(synopsis "Real support for JSX")
(description "Defines a major mode @code{rjsx-mode} based on
@code{js2-mode} for editing JSX files. @code{rjsx-mode} extends the parser in
@code{js2-mode} to support the full JSX syntax. This means you get all of the
@code{js2} features plus proper syntax checking and highlighting of JSX code
blocks.
Some features that this mode adds to js2:
@itemize
@item Highlighting JSX tag names and attributes (using the rjsx-tag and
rjsx-attr faces)
@item Highlight undeclared JSX components
@item Parsing the spread operator {...otherProps}
@item Parsing && and || in child expressions {cond && <BigComponent/>}
@item Parsing ternary expressions {toggle ? <ToggleOn /> : <ToggleOff />}
@end itemize
Additionally, since rjsx-mode extends the js2 AST, utilities using
the parse tree gain access to the JSX structure.")
(license license:gpl3+)))
(define-public emacs-seq
(package
(name "emacs-seq")
(version "2.20")
(source
(origin
(method url-fetch)
(uri (string-append "http://elpa.gnu.org/packages/seq-" version ".tar"))
(sha256
(base32
"0vrpx6nnyjb0gsypknzagimlhvcvi5y1rcdkpxyqr42415zr8d0n"))))
(build-system emacs-build-system)
(home-page "http://elpa.gnu.org/packages/seq.html")
(synopsis "Sequence manipulation functions")
(description "Sequence-manipulation functions that complement basic
functions provided by subr.el.
All functions are prefixed with \"seq-\".
All provided functions work on lists, strings and vectors.
Functions taking a predicate or iterating over a sequence using a function as
argument take the function as their first argument and the sequence as their
second argument. All other functions take the sequence as their first
argument.")
(license license:gpl3+)))
(define-public emacs-slime-company
(package
(name "emacs-slime-company")
(version "1.1")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/anwyn/slime-company/archive/"
"v" version ".tar.gz"))
(sha256
(base32
"1myl79pxj501xfr5qc5a24qddsn2l5iaamg7rf7fpny7mr9v70ar"))
(file-name (string-append name "-" version ".tar.gz"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-slime" ,emacs-slime)
("emacs-company" ,emacs-company)))
(home-page "http://company-mode.github.io")
(synopsis
"slime completion backend for company mode")
(description
"This is a backend implementation for the completion package company-mode
by Nikolaj Schumacher. Supports the normal and the fuzzy completion modes of
SLIME.
Installation:
Put this file somewhere into your load-path
(or just into slime-path/contribs) and then call
(slime-setup '(slime-company))
Also have the following, more convenient key bindings for company mode in my
.emacs:
(define-key company-active-map (kbd \"\\C-n\") 'company-select-next)
(define-key company-active-map (kbd \"\\C-p\") 'company-select-previous)
(define-key company-active-map (kbd \"\\C-d\") 'company-show-doc-buffer)
(define-key company-active-map (kbd \"M-.\") 'company-show-location)
")
(license license:gpl3+)))
(define-public emacs-sourcemap
(package
(name "emacs-sourcemap")
(version "0.03")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/syohex/emacs-sourcemap/archive/"
version ".tar.gz"))
(sha256
(base32
"0bmd5l3cx2iyl7vxn84xdhs80b07kpdpfwki28lh5d0kmm5qs6m6"))))
(build-system emacs-build-system)
(home-page "https://github.com/syohex/emacs-sourcemap")
(synopsis "Sourcemap parser")
(description "Sourcemap parser")
(license license:gpl3+)))
(define-public emacs-stickyfunc-enhance
(let ((commit "13bdba51fcd83ccbc3267959d23afc94d458dcb0")
(revision "1"))
(package
(name "emacs-stickyfunc-enhance")
(version "0.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/tuhdo/semantic-stickyfunc-enhance.git")
(commit commit)))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"16dxjsr5nj20blww4xpd4jzgjprzzh1nwvb810ggdmp9paf4iy0g"))))
(build-system emacs-build-system)
(home-page "https://github.com/tuhdo/semantic-stickyfunc-enhance")
(synopsis "Enhancement to stock @code{semantic-stickyfunc-mode}")
(description
"@code{semantic-stickyfunc-mode} shows the function point is currently
in at the first line of the current buffer. This is useful when you have a
very long function that spreads more than a screen, and you don't have to
scroll up to read the function name and then scroll down to original position.")
(license license:gpl3+))))
(define-public emacs-stumpwm-mode
(let ((commit "8fbe071d2c6c040794060a354eb377218dc10b35")
(revision "1"))
(package
(name "emacs-stumpwm-mode")
(version (string-append "0.0.1-" revision "."
(string-take commit 7)))
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/stumpwm/stumpwm-contrib.git")
(commit commit)))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"1dfwsvz1c8w6j4jp0kzaz78ml3f5dp0a5pvf090kwpbpg176r7iq"))))
(build-system emacs-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'chdir-elisp
;; Elisp directory is not in root of the source.
(lambda _
(chdir "util/swm-emacs"))))))
(home-page "https://github.com/stumpwm/stumpwm-contrib")
(synopsis "Emacs minor-mode for Stumpwm")
(description "Emacs minor-mode for Stumpwm")
(license license:gpl3+))))
(define-public emacs-suggest
(package
(name "emacs-suggest")
(version "0.4")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/Wilfred/suggest.el/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1760fm3j19w8xxcawq6s859h86q1rdg69pg9yz48n76kwfk3vlgp"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-loop" ,emacs-loop)
("emacs-dash" ,emacs-dash)
("emacs-s" ,emacs-s)
("emacs-f" ,emacs-f)))
(home-page "https://github.com/Wilfred/suggest.el")
(synopsis "Suggest Elisp functions that give the output requested")
(description "Suggest.el will find functions that give the output
requested. It's a great way of exploring list, string and arithmetic
functions.")
(license license:gpl3+)))
(define-public emacs-tern
(package
(name "emacs-tern")
(version "0.21.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/ternjs/tern/archive/"
version ".tar.gz"))
(sha256
(base32
"1pzchd29i6dxfgm0ackr2vc2xqpczjkwl5h6l8jils0bcfaj48ss"))))
(build-system emacs-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'chdir-elisp
;; Elisp directory is not in root of the source.
(lambda _
(chdir "emacs"))))))
(home-page "http://ternjs.net/")
(synopsis "Tern-powered JavaScript integration")
(description "Tern-powered JavaScript integration.")
(license license:gpl3+)))
(define-public emacs-web-beautify
(package
(name "emacs-web-beautify")
(version "0.3.2")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/yasuyk/web-beautify/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1j57hwid74id4swkx2g0iljfawx0k9c7qjrwqc0mv657x9p78hcs"))))
(build-system emacs-build-system)
(home-page "https://github.com/yasuyk/web-beautify")
(synopsis "Format HTML, CSS and JavaScript/JSON")
(description "Add the following to your Emacs init file.
(require 'web-beautify) ;; Not necessary if using ELPA package
(eval-after-load 'js2-mode
'(define-key js2-mode-map (kbd \"C-c b\") 'web-beautify-js))
(eval-after-load 'json-mode
'(define-key json-mode-map (kbd \"C-c b\") 'web-beautify-js))
(eval-after-load 'sgml-mode
'(define-key html-mode-map (kbd \"C-c b\") 'web-beautify-html))
(eval-after-load 'css-mode
'(define-key css-mode-map (kbd \"C-c b\") 'web-beautify-css))
If you want to automatically format before saving a file,
add the following hook to your Emacs configuration:
(eval-after-load 'js2-mode
'(add-hook 'js2-mode-hook
(lambda ()
(add-hook 'before-save-hook 'web-beautify-js-buffer t t))))
(eval-after-load 'json-mode
'(add-hook 'json-mode-hook
(lambda ()
(add-hook 'before-save-hook 'web-beautify-js-buffer t t))))
(eval-after-load 'sgml-mode
'(add-hook 'html-mode-hook
(lambda ()
(add-hook 'before-save-hook 'web-beautify-html-buffer t t))))
(eval-after-load 'css-mode
'(add-hook 'css-mode-hook
(lambda ()
(add-hook 'before-save-hook 'web-beautify-css-buffer t t))))
For more information, See URL https://github.com/yasuyk/web-beautify.")
(license license:gpl3+)))
(define-public emacs-websocket
(package
(name "emacs-websocket")
(version "1.8")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/ahyatt/emacs-websocket/archive/"
version ".tar.gz"))
(sha256
(base32
"07nz1spb2nklyf94fdh1rzbmscms9qxc7ypl77fzyvyw3az6qr50"))))
(build-system emacs-build-system)
(home-page "https://github.com/ahyatt/emacs-websocket")
(synopsis "Emacs WebSocket client and server")
(description "This implements RFC 6455, which can be found at
@url{http://tools.ietf.org/html/rfc6455}.
This library contains code to connect Emacs as a client to a websocket server,
and for Emacs to act as a server for websocket connections.
Websockets clients are created by calling @code{websocket-open}, which returns
a @code{websocket} struct. Users of this library use the websocket struct,
and can call methods @code{websocket-send-text}, which sends text over the
websocket, or @code{websocket-send}, which sends a @code{websocket-frame}
struct, enabling finer control of what is sent. A callback is passed to
@code{websocket-open} that will retrieve websocket frames called from the
websocket. Websockets are eventually closed with @code{websocket-close}.
Server functionality is similar. A server is started with
@code{websocket-server} called with a port and the callbacks to use, which
returns a process. The process can later be closed with
@code{websocket-server-close}. A @code{websocket} struct is also created for
every connection, and is exposed through the callbacks.")
(license license:gpl3+)))
(define-public emacs-wordgen
(package
(name "emacs-wordgen")
(version "0.1.4")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/Fanael/wordgen.el/archive/"
version ".tar.gz"))
(sha256
(base32
"1h2iyixdm49h53pwj9ics9gb9h3g6wa4hainpnjg6mfarf49jkmg"))))
(build-system emacs-build-system)
(home-page "https://github.com/Fanael/wordgen.el")
(synopsis "Random word generator")
(description "Generate random words using user-provided rules.
Example:
(wordgen '((result (concat-reeval [(2 1) (5 2) (4 3)] syl))
(syl (++ c v coda))
(c [(4 \"p\") (5 \"t\") (5 \"k\") (3 \"m\") (4 \"n\") (3 \"s\") (4
\"l\") (3 \"r\")])
(v [\"a\" \"e\" \"i\" \"o\" \"u\"])
(coda [(4 \"\") \"m\" \"n\"]))
:word-count 5)
=> (\"komlamkim\" \"kepa\" \"mennem\" \"ne\" \"palu\")
See the function `wordgen' for complete description.
")
(license license:gpl3+)))
(define-public emacs-indium-checkout
(let ((commit "d98a9e0cd11d8230c4c3d0b59c4ac60520e34ebb")
(revision "1"))
(package
(inherit emacs-indium)
(name "emacs-indium")
(version (string-append (package-version emacs-indium) "-" revision "."
(string-take commit 7)))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/NicolasPetton/Indium.git")
(commit commit)))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"1q3yf45fmbjppv3ahb1gdb95pa3kyn18x5m23ihpxz1pziz3a074")))))))
(define-public emacs-know-your-http-well
(package
(name "emacs-know-your-http-well")
(version "0.5.0")
(source
(origin
(method url-fetch)
(uri (string-append
"https://github.com/for-GET/know-your-http-well/archive/"
"v" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1y3kwz88awcgwaivlswq0q4g2i02762r23lpwg61bfqy5lrjjqnj"))))
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'install-json-files
(lambda* (#:key outputs #:allow-other-keys)
(for-each (lambda (directory)
(copy-recursively directory
(string-append
(assoc-ref outputs "out")
directory)))
'("js" "json"))))
(add-after 'unpack 'chdir-elisp
;; Elisp directory is not in root of the source.
(lambda _
(chdir "emacs"))))))
(build-system emacs-build-system)
(home-page "https://github.com/for-GET/know-your-http-well")
(synopsis "Meaning of HTTP headers codes")
(description "Meaning of HTTP headers codes.")
(license license:gpl3+)))
(define-public emacs-company-restclient
(package
(name "emacs-company-restclient")
(version "0.1.0")
(source
(origin
(method url-fetch)
(uri (string-append
"https://github.com/iquiw/company-restclient/archive/"
"v" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1kr3f0wgqlk7r171bvb2kinv7fanwj2md01wdpx04qkgwcr1as00"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-company" ,emacs-company)
("emacs-know-your-http-well" ,emacs-know-your-http-well)
("emacs-restclient" ,emacs-restclient)))
(home-page "https://github.com/iquiw/company-restclient")
(synopsis "Company-mode completion back-end for restclient-mode")
(description "@code{company-mode} back-end for
@code{restclient-mode}.
It provides auto-completion for HTTP methods and headers in
@code{restclient-mode}. Completion source is given by
@code{know-your-http-well}.")
(license license:gpl3+)))
(define-public emacs-helm-notmuch
(package
(name "emacs-helm-notmuch")
(version "1.1")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/xuchunyang/helm-notmuch/archive/"
version ".tar.gz"))
(sha256
(base32
"09b3jllppfmk0mb1qvgcx705jwixqn5ggl0bql6g5a3i7yy6xpyd"))))
(build-system emacs-build-system)
;; TODO: helm-notmuch.el:36:1:Error: Cannot open load file: No such file or directory, notmuch
(propagated-inputs
`(("notmuch" ,notmuch)
("emacs-helm" ,emacs-helm)))
(home-page "https://github.com/xuchunyang/helm-notmuch")
(synopsis "Search emails with Notmuch and Helm")
(description "Search emails, searching result displays as you type
thanks to helm.")
(license license:gpl3+)))
(define-public emacs-csv-mode
(package
(name "emacs-csv-mode")
(version "1.6")
(source
(origin
(method url-fetch)
(uri (string-append "http://elpa.gnu.org/packages/csv-mode-"
version ".el"))
(sha256
(base32
"1v86qna1ypnr55spf6kjiqybplfbb8ak5gnnifh9vghsgb5jkb6a"))))
(build-system emacs-build-system)
(home-page
"http://elpa.gnu.org/packages/csv-mode.html")
(synopsis
"Major mode for editing comma/char separated values")
(description
"This package implements CSV mode, a major mode for editing records
in a generalized CSV (character-separated values) format. It binds
finds with prefix \".csv\" to `csv-mode' in `auto-mode-alist'.
In CSV mode, the following commands are available:
- C-c C-s (`csv-sort-fields') and C-c C-n (`csv-sort-numeric-fields')
respectively sort lexicographically and numerically on a
specified field or column.
- C-c C-r (`csv-reverse-region') reverses the order. (These
commands are based closely on, and use, code in `sort.el'.)
- C-c C-k (`csv-kill-fields') and C-c C-y (`csv-yank-fields') kill
and yank fields or columns, although they do not use the normal
kill ring. C-c C-k can kill more than one field at once, but
multiple killed fields can be yanked only as a fixed group
equivalent to a single field.
- C-c C-a (`csv-align-fields') aligns fields into columns
- C-c C-u (`csv-unalign-fields') undoes such alignment; separators
can be hidden within aligned records.
- C-c C-t (`csv-transpose') interchanges rows and columns. For
details, see the documentation for the individual commands.
CSV mode can recognize fields separated by any of several single
characters, specified by the value of the customizable user option
`csv-separators'. CSV data fields can be delimited by quote
characters (and must if they contain separator characters). This
implementation supports quoted fields, where the quote characters
allowed are specified by the value of the customizable user option
`csv-field-quotes'. By default, the only separator is a comma and
the only field quote is a double quote. These user options can be
changed ONLY by customizing them, e.g. via M-x customize-variable.
CSV mode commands ignore blank lines and comment lines beginning
with the value of the buffer local variable `csv-comment-start',
which by default is #. The user interface is similar to that of
the standard commands `sort-fields' and `sort-numeric-fields', but\nsee the major mode documentation below.
The global minor mode `csv-field-index-mode' provides display of
the current field index in the mode line, cf. `line-number-mode'
and `column-number-mode'. It is on by default.
Installation:
Put this file somewhere that Emacs can find it (i.e. in one of the
directories in your `load-path' such as `site-lisp'), optionally
byte-compile it (recommended), and put this in your .emacs file:
(add-to-list 'auto-mode-alist '(\"\\\\.[Cc][Ss][Vv]\\\\'\" . csv-mode))
(autoload 'csv-mode \"csv-mode\"
\"Major mode for editing comma-separated value files.\" t)")
(license license:gpl3+)))
(define-public emacs-parsebib
(package
(name "emacs-parsebib")
(version "2.3.1")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/joostkremers/parsebib/archive/"
version ".tar.gz"))
(sha256
(base32
"0cxagnmc5ab6idmb26axpizhr4sqglkncc59768yavn3p04jyq63"))))
(build-system emacs-build-system)
(home-page "https://github.com/joostkremers/parsebib")
(synopsis "A library for parsing bib files")
(description "A library for parsing bib files")
(license license:gpl3+)))
(define-public emacs-biblio
(package
(name "emacs-biblio")
(version "0.1")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/cpitclaudel/biblio.el/archive/"
version ".tar.gz"))
(sha256
(base32
"109fvivsb4r0rbqljngqrmxqvbnbkqlivczx6brrvlr7ci625lhf"))))
(build-system emacs-build-system)
(home-page "https://github.com/cpitclaudel/biblio.el")
(synopsis "Browse and import bibliographic references from
CrossRef, arXiv, DBLP, HAL, Dissemin, and doi.org")
(description "# biblio.el: An extensible Emacs package for
browsing and fetching references
biblio.el makes it easy to browse and gather bibliographic references and
publications from various sources, by keywords or by DOI. References are
automatically fetched from well-curated sources, and formatted as BibTeX.
## Supported sources:
* ‘CrossRef’, an exhaustive academic search engine (recommended)
* ‘arXiv’, an archive of pre-prints in various scientific fields
* ‘DBLP’, a database of Computer Science publications
* ‘HAL’, a French repository of Open Access publications
* ‘doi.org’, a DOI resolver (to retrieve BibTeX records from DOIs)
* ‘CrossCite’, an alternative DOI resolver and BibTeX formatting service
* ‘Dissemin’, a database tracking the open access status of scholarly articles
## Usage
Quick start: ‘M-x biblio-lookup’. Each source can also be accessed independently:
* ‘M-x crossref-lookup’ to query CrossRef
* ‘M-x arxiv-lookup` to query arXiv
* `M-x dblp-lookup’ to query DBLP
* ‘M-x doi-insert’ to insert a BibTeX record by DOI
* ‘M-x dissemin-lookup’ to show information about the open access status of a
particular DOI
Most of these commands work together: for example, ‘crossref-lookup’ displays a
list of results in ‘biblio-selection-mode’. In that mode, use:
* ‘RET’ to visit the corresponding web page
* ‘c’ or ‘M-w’ to copy the BibTeX record of the current entry
* ‘i’ or ‘C-y’ to insert the BibTeX record of the current entry
* ‘x’ to run an extended action, such as fetching a Dissemin record
‘C’ and ‘I’ do the same as ‘c’ and ‘i’, but additionally close the search window.
## Examples
* To insert a clean BibTeX entry for http://doi.org/10.1145/2676726.2677006
in the current buffer, use
M-x crossref-lookup RET fiat deductive delaware RET i
(the last ‘i’ inserts the BibTeX record of the currently selected entry in
your buffer).
* To find publications by computer scientist Leslie Lamport, use ‘M-x
dblp-lookup RET author:Lamport RET’ (see more info about DBLP's syntax at
<http://dblp.uni-trier.de/search/>)
* To check whether an article is freely available online, use ‘x’ in the list
of results. For example ‘M-x crossref-lookup RET Emacs stallman RET’
followed by ‘x Dissemin RET’ will help you find open access copies of
Stallman's paper on EMACS (spoiler: http://hdl.handle.net/1721.1/5736).
See http://github.com/cpitclaudel/biblio.el for more information, including
documentation on extending this framework.
")
(license license:gpl3+)))
(define-public emacs-helm-bibtex
(let ((commit "8ed898fb5a68f18e9bb9973832a5c1f8abcfc463")
(revision "1"))
(package
(name "emacs-helm-bibtex")
(version (string-append "2.0.0" "-" revision "."
(string-take commit 7)))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/tmalsburg/helm-bibtex.git")
(commit commit)))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"14lyx0vbqr97p3anzrsp7m3q0kqclyjcdwplpraim403fcklzbnz"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-helm" ,emacs-helm)
("emacs-parsebib" ,emacs-parsebib)
("emacs-s" ,emacs-s)
("emacs-dash" ,emacs-dash)
("emacs-f" ,emacs-f)
("emacs-biblio" ,emacs-biblio)))
(home-page "https://github.com/tmalsburg/helm-bibtex")
(synopsis "A bibliography manager based on Helm")
(description "A bibliography manager for Emacs, based on Helm and
the bibtex-completion backend.
Key features:
- Quick access to your bibliography from within Emacs
- Powerful search capabilities
- Provides instant search results as you type
- Tightly integrated with LaTeX authoring, emails, Org mode, etc.
- Open the PDFs, URLs, or DOIs associated with an entry
- Insert LaTeX cite commands, Ebib links, or Pandoc citations,
BibTeX entries, or plain text references at point, attach PDFs to
emails
- Support for note taking
- Quick access to online bibliographic databases such as Pubmed,
arXiv, Google Scholar, Library of Congress, etc.
- Imports BibTeX entries from CrossRef and other sources.")
(license license:gpl3+))))
(define-public emacs-org-ref
(let ((commit "8c9b5d7efb9f0c1ad5186b8203bdd017f4249129")
(revision "1"))
(package
(name "emacs-org-ref")
(version (string-append "1.1.1" "-" revision "."
(string-take commit 7)))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/jkitchin/org-ref.git")
(commit commit)))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"1rxz0bjdsayk0slv23i07d9xhj2m7s4hsc81wc2d1cs52dkr5zmz"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-dash" ,emacs-dash)
("emacs-helm" ,emacs-helm)
("emacs-helm-bibtex" ,emacs-helm-bibtex)
("emacs-ivy" ,emacs-ivy)
("emacs-hydra" ,emacs-hydra)
("emacs-key-chord" ,emacs-key-chord)
("emacs-s" ,emacs-s)
("emacs-f" ,emacs-f)
("emacs-pdf-tools" ,emacs-pdf-tools)))
(home-page "https://github.com/jkitchin/org-ref")
(synopsis "Citations, cross-references and bibliographies in org-mode")
(description
"Lisp code to setup bibliography, cite, ref and label org-mode links.
Also sets up reftex and helm for org-mode citations. The links are
clickable and do things that are useful.
The default setup uses helm-bibtex.
You should really read org-ref.org in this package for details.")
(license license:gpl3+))))
(define-public emacs-irfc
(package
(name "emacs-irfc")
(version "20130824.507")
(source
(origin
(method url-fetch)
(uri "https://www.emacswiki.org/emacs/download/irfc.el")
(file-name (string-append "irfc-" version ".el"))
(sha256
(base32
"197ybqwbj8qjh2p9pkf5mvqnrkpcgmv8c5s2gvl6msyrabk0mnca"))))
(build-system emacs-build-system)
(home-page
"http://www.emacswiki.org/emacs/download/irfc.el")
(synopsis "Interface for IETF RFC document.")
(description
"Interface for IETF RFC document.
This package use some code from `rfcview.el'.
Thanks \"Neil W. Van Dyke\"!
The features this package provide:
* Format RFC document for easy reading.
* Single keystroke for fast view.
* Render status switch.
* Smart table and content switch.
* Visit RFC link around point.
* Jump to RFC reference around point.
* Download RFC document *asynchronous*.
Below are commands you can use:
`irfc-render-toggle' Toggle render status with RFC buffer.
`irfc-quit' Quit RFC buffer.
`irfc-visit' Ask for RFC number and visit document.
`irfc-reference-goto' Ask for RFC reference and jump to it.
`irfc-head-goto' Ask for heading name and jump to it.
`irfc-head-number-goto' Ask for heading number and jump to it.
`irfc-follow' Visit RFC document around point.
`irfc-table-jump' Switch between table and content.
`irfc-page-goto' Goto page.
`irfc-page-next' Jump next page.
`irfc-page-prev' Jump previous page.
`irfc-page-first' Jump first page.
`irfc-page-last' Jump last page.
`irfc-page-table' Jump table page.
`irfc-head-next' Jump next heading.
`irfc-head-prev' Jump previous heading.
`irfc-rfc-link-next' Jump next RFC link.
`irfc-rfc-link-prev' Jump previous RFC link.
`irfc-scroll-up-one-line' Scroll up one line.
`irfc-scroll-down-one-line' Scroll down one line.
Tips:
You can use command `irfc-render-toggle' to toggle render status.
Command `irfc-table-jump' can switch between table and content,
example you stay cursor at *table*, and type \"G\" will jump corresponding
content in buffer, alike, you can stay at any content and type \"G\"
will jump corresponding table item.
Command `irfc-follow' will visit RFC document around point,
example you stay cursor at \"[RFC3986]\", and type \"o\" will
open rfc3986.txt in storage directory. If have not found
this file in directory, will download from `http://www.ietf.org/rfc/'
and open it when download complete.
And command ‘irfc-follow’ can also use at title of RFC document.
Example rfc3986.txt contain “Obsoletes: 2732, 2396, 1808” at title,
you can move cursor to “2732” and type “o” will visit RFC 2732 document.
‘irfc-follow’ support below keywords in title:
“Request for Comments:”
“Updates:”
“Obsoletes:”
You can use command `irfc-rfc-link-next' or `irfc-rfc-link-prev'
to jump next or previous RFC link in document.
Command `irfc-visit' will ask the user for a RFC number and will
visit that document, either from `irfc-directory', if exists, or by
downloading it. This command can serve as entry point for Irfc,
to go to a RFC without having to visit the file or remember
whether it is already in `irfc-directory'.
And if you visit same document with your previous type, so just
hit RET, and don't need type RFC document number.
Command `irfc-reference-goto' will ask the user for a reference
number and will jump to that citation in the Normative
References/Informative References heading.
Command `irfc-head-goto' will ask the user for a heading name and
will jump to that heading. Completion list in minibuffer is
available.
Command `irfc-head-number-goto' will ask the user for a heading
number and will jump to that heading. Completion list in minibuffer
is available.
Installation:
Put irfc.el to your load-path.
The load-path is usually ~/elisp/.
It's set in your ~/.emacs like this:
(add-to-list 'load-path (expand-file-name \"~/elisp\"))
And the following to your ~/.emacs startup file.
(require 'irfc)
Setup your storage directory for RFC documents.
(setq irfc-directory \"YourStorageDirectory\")
If you want make RFC document load `irfc-mode' automatically,
setup like below:
(setq irfc-assoc-mode t)")
(license license:gpl3+)))
(define-public emacs-move-text
(package
(name "emacs-move-text")
(version "2.0.8")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/emacsfodder/move-text/archive/"
version ".tar.gz"))
(sha256
(base32
"1sjfja9r25692pgcldgnjzkapzy970m14jh9l4pajysiqcdk72g0"))))
(build-system emacs-build-system)
(home-page "https://github.com/emacsfodder/move-text")
(synopsis "Move current line or region with M-up or M-down")
(description "MoveText is a re-write of the old move-text and
compatible with >= Emacs 25.1
It allows you to move the current line using M-up / M-down if a region
is marked, it will move the region instead.
Using the prefix (C-u *number* or META *number*) you can predefine how
many lines move-text will travel.
Installation:
Put move-text.el to your load-path.
The load-path is usually ~/elisp/.
It's set in your ~/.emacs like this:
(add-to-list 'load-path (expand-file-name \"~/elisp\"))
\nAnd the following to your ~/.emacs startup file.
(require 'move-text)
(move-text-default-bindings)
Acknowledgements:
Original v1.x was a Feature extracted from basic-edit-toolkit.el - by Andy Stewart (LazyCat) ")
(license license:gpl3+)))
(define-public emacs-git-auto-commit-mode
(package
(name "emacs-git-auto-commit-mode")
(version "4.4.0")
(source
(origin
(method url-fetch)
(uri (string-append
"https://github.com/ryuslash/git-auto-commit-mode/archive/"
version ".tar.gz"))
(sha256
(base32
"04avxmalsl3b7zi2vipfw9rb4wrwysnipsbch96skviql9axk870"))))
(build-system emacs-build-system)
(home-page "http://projects.ryuslash.org/git-auto-commit-mode/")
(synopsis "Emacs Minor mode to automatically commit and push")
(description "git-auto-commit-mode is an Emacs minor mode that
tries to commit changes to a file after every save.
When `gac-automatically-push-p' is non-nil, it also tries to push to
the current upstream.")
(license license:gpl3+)))
(define-public emacs-lacarte
(package
(name "emacs-lacarte")
(version "0.1")
(source (origin
(method url-fetch)
(uri "https://www.emacswiki.org/emacs/download/lacarte.el")
(sha256
(base32
"0m3swrvxz0cy01pd4kag626fxqp4l2zzwpgr26yp5wpsfxl9avv8"))))
(build-system emacs-build-system)
(home-page "https://www.emacswiki.org/emacs/lacarte.el")
(synopsis "Execute menu items as commands, with completion")
(description "Execute menu items as commands, with completion.")
(license license:gpl3)))
(define-public emacs-visual-regexp
(package
(name "emacs-visual-regexp")
(version "1.1.1")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/benma/visual-regexp.el/archive/"
"v" version ".tar.gz"))
(sha256
(base32
"1czmhvcivlcdyz7rfm0vd4a3xsgmy4qbvbl6yjxc217wrxqflr92"))))
(build-system emacs-build-system)
(home-page "https://github.com/benma/visual-regexp.el/")
(synopsis "A regexp command with interactive visual feedback")
(description "A regexp command with interactive visual feedback")
(license license:gpl3+)))
(define-public emacs-ido-vertical-mode
(package
(name "emacs-ido-vertical-mode")
(version "0.1.6")
(source
(origin
(method url-fetch)
(uri (string-append
"https://github.com/creichert/ido-vertical-mode.el/archive/"
"v" version ".tar.gz"))
(sha256
(base32
"0dprdxq8wvqd45dinwj92k0kixr07c8xvspa6i613mjcpxgwjg53"))))
(build-system emacs-build-system)
(home-page "https://github.com/creichert/ido-vertical-mode.el")
(synopsis "Makes ido-mode display vertically")
(description "Makes ido-mode display prospects vertically.")
(license license:gpl3+)))
(define-public emacs-dashboard
(package
(name "emacs-dashboard")
(version "1.2.4")
(source
(origin
(method url-fetch)
(uri (string-append
"https://github.com/rakanalh/emacs-dashboard/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1738lmbgq6gk24hcwic0qjyajr21l5xzhya4pv58dw1bhd6vxv9g"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-page-break-lines" ,emacs-page-break-lines)))
(arguments '(#:include '("\\.el$" "\\.txt$" "\\.png$")))
(home-page "https://github.com/rakanalh/emacs-dashboard")
(synopsis "A startup screen extracted from Spacemacs")
(description "An extensible Emacs dashboard, with sections for
bookmarks, projectil projects, org-agenda and more. ")
(license license:gpl3+)))
(define-public emacs-sml-mode
(package
(name "emacs-sml-mode")
(version "6.7")
(source
(origin
(method url-fetch)
(uri (string-append "http://elpa.gnu.org/packages/sml-mode-"
version ".el"))
(sha256
(base32
"041dmxx7imiy99si9pscwjh5y4h02y3lirzhv1cfxqr3ghxngf9x"))))
(build-system emacs-build-system)
(home-page "http://elpa.gnu.org/packages/sml-mode.html")
(synopsis "Major mode for editing (Standard) ML")
(description "SML-MODE is a major Emacs mode for editing Standard ML.
It provides syntax highlighting and automatic indentation and
comes with sml-proc which allows interaction with an inferior SML
interactive loop.")
(license license:gpl3+)))
(define-public emacs-hy-mode
(package
(name "emacs-hy-mode")
(version "1.0.2")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/hylang/hy-mode/archive/"
"v" version ".tar.gz"))
(sha256
(base32
"0sbga36zkyhzrzcczsyjzll7b9qsa215pnlw51m4li2irm23jh17"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-dash" ,emacs-dash)
("emacs-s" ,emacs-s)))
(home-page "http://github.com/hylang/hy-mode")
(synopsis "Major mode for Hylang")
(description "Major mode for Hylang")
(license license:gpl3+)))
(define-public emacs-faceup
(let ((commit "6c92dad56a133e14e7b27831e1bcf9b3a71ff154")
(revision "1"))
(package
(name "emacs-faceup")
(version (string-append "0.0.1" "-" revision "."
(string-take commit 7)))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Lindydancer/faceup.git")
(commit commit)))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"1yzmy7flrhrh0i10bdszx8idx6r8h6czm4vm4q0z6fp5fw94zwrx"))))
(build-system emacs-build-system)
(home-page "https://github.com/Lindydancer/faceup")
(synopsis "Markup language for faces and font-lock regression testing")
(description "Emacs is capable of highlighting buffers based on
language-specific `font-lock' rules. This package makes it possible
to perform regression test for packages that provide font-lock rules.")
(license license:gpl3+))))
(define-public emacs-racket-mode
(let ((commit "33877b1bb24faea68842e0396bd5718b84e47451")
(revision "1"))
(package
(name "emacs-racket-mode")
(version (string-append "0.0.1" "-" revision "."
(string-take commit 7)))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/greghendershott/racket-mode")
(commit commit)))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"0681mzwx08zwbh8qg3s26jw1jn4fw2ljp1akxqkhy08sxhafqvb1"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-faceup" ,emacs-faceup)
("emacs-s" ,emacs-s)))
(home-page "https://github.com/greghendershott/racket-mode")
(synopsis "Major mode for Racket language")
(description "@code{racket-mode} provides:
@itemize
@item Focus on Racket (not various Schemes).
@item Follow DrRacket concepts where applicable.
@item Thorough font-lock and indent.
@end itemize\n")
(license license:gpl3+))))
(define-public emacs-eval-in-repl
(package
(name "emacs-eval-in-repl")
(version "0.9.6")
(source
(origin
(method url-fetch)
(uri (string-append
"https://github.com/kaz-yos/eval-in-repl/archive/"
"v" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1lw97llr0lzipbi4a7q7qrjvqz9g7bip46rkm88sgbagh218sjr4"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-dash" ,emacs-dash)
("emacs-paredit" ,paredit)
("emacs-ace-window" ,emacs-ace-window)))
(inputs
`(("emacs-slime" ,emacs-slime)
("emacs-sml-mode" ,emacs-sml-mode)
("emacs-cider" ,emacs-cider)
("geiser" ,geiser)
("emacs-lua-mode" ,emacs-lua-mode)
("emacs-js2-mode" ,emacs-js2-mode)
("emacs-inf-ruby" ,emacs-inf-ruby)
("emacs-tuareg" ,emacs-tuareg)
("emacs-hy-mode" ,emacs-hy-mode)
("emacs-racket-mode" ,emacs-racket-mode)))
(home-page "https://github.com/kaz-yos/eval-in-repl/")
(synopsis "Consistent ESS-like eval interface for various REPLs")
(description "Consistent ESS-like eval interface for various REPLs")
(license license:gpl3+)))
(define-public emacs-m-buffer-el
(package
(name "emacs-m-buffer-el")
(version "0.15")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/phillord/m-buffer-el"
"/archive/" "v" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"17vdcc8q37q9db98jyww1c0ivinmwfcw4l04zccfacalra63a214"))))
(arguments
`(#:phases
(modify-phases %standard-phases
(add-before 'install 'check
(lambda* (#:key inputs #:allow-other-keys)
(zero? (system* "emacs" "--batch" "-L" "."
"-l" "test/m-buffer-test.el"
"-l" "test/m-buffer-at-test.el"
"-f" "ert-run-tests-batch-and-exit")))))))
(build-system emacs-build-system)
(home-page "https://github.com/phillord/m-buffer-el")
(synopsis "List oriented buffer operations for Emacs")
(description "@{m-buffer} provides a set of list-orientated
functions for operating over the contents of Emacs buffers.")
(license license:gpl3+)))
(define-public emacs-load-relative
(let ((commit "738896e3da491b35399178ed2c6bc92cc728d119")
(revision "1"))
(package
(name "emacs-load-relative")
(version (string-append "0.0.1" "-" revision "."
(string-take commit 7)))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/rocky/emacs-load-relative")
(commit commit)))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"1rpy5mfncncl6gqgg53d3g25g1700g4b9bivd4c0cfcv5dbxhp73"))))
(build-system emacs-build-system)
(home-page "https://github.com/rocky/emacs-load-relative")
(synopsis "Relative loads for Emacs Lisp files")
(description "@code{load-relative} allows to write small Emacs
functions or modules in a larger multi-file Emacs package and
facilitate running from the source tree without having to install the
code or fiddle with evil @code{load-path}.")
(license license:gpl3+))))
(define-public emacs-assess
(package
(name "emacs-assess")
(version "0.4")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/phillord/assess"
"/archive/" "v" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"19q1zhalljzidg5lwl3l293ypqpy6x1bn8h1wr4a4jjzzv56ahak"))))
(inputs
`(("emacs-m-buffer-el" ,emacs-m-buffer-el)))
(arguments
`(#:phases
(modify-phases %standard-phases
(add-before 'install 'check
(lambda* (#:key inputs #:allow-other-keys)
(zero? (system* "emacs" "--batch" "-L" "."
"-L" (string-append
(assoc-ref inputs "emacs-m-buffer-el")
"/share/emacs/site-lisp/guix.d/m-buffer-el-"
,(package-version emacs-m-buffer-el))
"-l" "test/assess-test.el"
"-f" "ert-run-tests-batch-and-exit")))))))
(build-system emacs-build-system)
(home-page "https://github.com/phillord/assess")
(synopsis "Test support functions for Emacs")
(description "@code{assess} provides additional support for
testing Emacs packages.
It provides:
@itemize
@item A set of predicates for comparing strings, buffers and file
contents.
@item Explainer functions for all predicates giving useful output.
@item Macros for creating many temporary buffers at once, and for
restoring the buffer list.
@item Methods for testing indentation, by comparision or
roundtripping.
@item Methods for testing fontification.
@item Assess aims to be a stateless as possible, leaving Emacs
unchanged whether the tests succeed or fail, with respect to buffers,
open files and so on. This helps to keep tests independent from each
other.
@end itemize\n")
(license license:gpl3+)))
(define-public emacs-beginend
(package
(name "emacs-beginend")
(version "2.0.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/DamienCassou/beginend/archive/"
"v" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0z4rbwffh9vxfvcrlvym4p73z7gf72q0b5iv33llbpcpbijknnrq"))))
(arguments
`(#:phases
(modify-phases %standard-phases
(add-before 'install 'check
(lambda* (#:key inputs #:allow-other-keys)
(zero? (system* "emacs" "--batch" "-L" "."
"-l" "test/test-helper.el"
"-l" "test/beginend-dired-test.el"
"-l" "test/beginend-marks-test.el"
"-l" "test/beginend-narrowing-test.el"
"-l" "test/beginend-prog-test.el"
"-f" "ert-run-tests-batch-and-exit")))))))
(build-system emacs-build-system)
(inputs
`(("emacs-undercover" ,emacs-undercover))) ; For tests.
(home-page "https://github.com/DamienCassou/beginend")
(synopsis "Redefine @code{M-<} and @code{M->} for Emacs modes")
(description "@code{beginend} redefines @code{M-<} and @code{M->}
keybindings for Emacs modes so that point moves to meaningful
locations. Redefined keys are still accessible by pressing the same
key again.")
(license license:gpl3+)))
(define-public emacs-eros
(let ((commit "a42e45c9b2397156c684330b0fc90ee0eba773f5")
(revision "1"))
(package
(name "emacs-eros")
(version (string-append "0.0.1" "-" revision "."
(string-take commit 7)))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/xiongtx/eros.git")
(commit commit)))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"0whlsq90v13fz69k3wjrwcwb9gkpfxqjd75mg3nrp85j9nwhb5i4"))))
(build-system emacs-build-system)
(home-page "https://github.com/xiongtx/eros")
(synopsis "Evaluation result overlays")
(description "@code{eros} provides evaluation result overlays.")
(license license:gpl3+))))
(define-public emacs-parinfer-mode
(package
(name "emacs-parinfer-mode")
(version "0.4.10")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/DogLooksGood/parinfer-mode/archive/"
"v" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"06ba9qi59sm9ih9m38fbr8kj4qkvrm58n0c0ngfjz60gnr9x9pcv"))))
(propagated-inputs
`(("emacs-dash" ,emacs-dash)
("emacs-rainbow-delimiters" ,emacs-rainbow-delimiters)
("emacs-company" ,emacs-company)))
(build-system emacs-build-system)
(home-page "https://github.com/DogLooksGood/parinfer-mode/")
(synopsis "Lisp structure editing mode")
(description "@code{parinfer-mode} is a proof-of-concept editor
mode for Lisp programming languages. It will infer some changes to
keep Parens and Indentation inline with one another.")
(license license:gpl3+)))
(define-public emacs-shift-number
(package
(name "emacs-shift-number")
(version "0.1")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/alezost/shift-number.el"
"/archive/" "v" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1g79m0hqn9jgpm565vvh8pdfzndc4vw7xisnh5qysj55qfg8cb1x"))))
(build-system emacs-build-system)
(home-page "https://github.com/alezost/shift-number.el")
(synopsis "Increase or decrease the number at point")
(description "@code{emacs-shift-number} provides commands
@code{shift-number-up} to increase and @code{shift-number-down} to
decrease the number at point.")
(license license:gpl3+)))
(define-public emacs-download-region
(let ((commit "eb9e557529a73b4cfc8281c70dd0d95db333fffa")
(revision "1"))
(package
(name "emacs-download-region")
(version (string-append "0.0.1" "-" revision "."
(string-take commit 7)))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/zk-phi/download-region.git")
(commit commit)))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"0v52djg39b6k2snizd9x0qc009ws5y0ywqsfwhqgcbs5ymzh7dsc"))))
(build-system emacs-build-system)
(home-page "https://github.com/zk-phi/download-region")
(synopsis "In buffer download manager for Emacs")
(description "@code{download-region} provides in buffer
downloading manager for Emacs.")
(license license:gpl3+))))
|