-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelm-completion.sh
1456 lines (1434 loc) · 36.2 KB
/
elm-completion.sh
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
##
#
# bash/zsh-bashcompinit elm completion script
#
# Copyright (C) 2019-2020 Rémi Lefèvre
#
# https://github.com/dmy/elm-sh-completion
#
# To install, two options:
#
# Option 1: Source the file from your ~/.bashrc or ~/.bash_profile
# For example:
# $ mkdir -p ~/.bash
# $ cd ~/.bash
# $ git clone https://github.com/dmy/elm-sh-completion.git
#
# Then on Linux:
# $ echo 'source ~/.bash/elm-sh-completion/elm-completion.sh' >> ~/.bashrc
#
# Or on MacOS X:
# $ echo 'source ~/.bash/elm-sh-completion/elm-completion.sh' >> ~/.bash_profile
#
# Option 2: Add the file to bash_completion.d
# If /etc/bash_completion.d exists on your system:
# $ sudo curl -o /etc/bash_completion.d/elm https://raw.githubusercontent.com/dmy/elm-sh-completion/master/elm-completion.sh
#
# Or on MacOS X with Homebrew:
# $ brew install bash-completion
# $ sudo curl -o /usr/local/etc/bash_completion.d/elm https://raw.githubusercontent.com/dmy/elm-sh-completion/master/elm-completion.sh
#
##
##
#
# Elm home and packages directory
#
##
elm_version="$(elm --version 2>/dev/null)"
if [ $? -ne 0 ]; then
echo "elm-sh-completion error: cannot run 'elm --version'"
echo "Please check that elm command is available from PATH."
return 1
fi
elm_home="${ELM_HOME:-$HOME/.elm}/${elm_version}"
if [ "${elm_version}" = "0.19.0" ]; then
packages_dir="${elm_home}/package"
registry="${packages_dir}/versions.dat"
else
packages_dir="${elm_home}/packages"
registry="${packages_dir}/registry.dat"
fi
##
#
# elm
#
##
_elm ()
{
if [ ! -d "$packages_dir" ]; then
return 0;
fi
local word="$2"
local previous_arg="$3"
case "${COMP_WORDS[1]}" in
--help)
;;
repl)
flags "$@" '--help --interpreter --no-colors'
;;
init)
;;
reactor)
flags "$@" '--help --port'
;;
make)
flags "$@" '--help --debug --optimize --report=json' '--output --docs'
;;
install)
if [ "$previous_arg" = "install" ]; then
packages "$word" "--help"
fi
;;
bump)
flags "$@"
;;
diff)
if [ "$previous_arg" = "diff" ]; then
packages "$word" "--help"
elif [ -d "${packages_dir}/${previous_arg}" ]; then
package_versions "${previous_arg}" "$word"
elif [ -d "${packages_dir}/${COMP_WORDS[-3]}/${previous_arg}" ]; then
package_versions "${COMP_WORDS[-3]}" "$word"
fi
;;
publish)
flags "$@" '--help'
;;
*)
flags "$@" '--help repl init reactor make install bump diff publish'
;;
esac
}
##
#
# elm-json
#
##
_elm_json ()
{
if [ ! -d "$packages_dir" ]; then
return 0;
fi
local word="$2"
local previous_arg="$3"
local command=""
find_command help install new tree uninstall upgrade solve completions
if find_command -h --help -V --version; then
return 0
fi
case "$command" in
help)
flags "$@" 'install new tree uninstall upgrade solve completions'
;;
install)
packages "$word" '--help --test --yes'
;;
new)
flags "$@" '--help'
;;
tree)
flags "$@" '' '--help --test'
;;
uninstall)
packages "$word" '--help --yes'
;;
upgrade)
flags "$@" '--help --unsafe --yes'
;;
solve)
case "$previous_arg" in
-e|--extra)
packages "$word"
;;
*)
flags "$@" '--help --minimize --test --extra'
;;
esac
;;
completions)
flags "$@" '--help bash zsh fish'
;;
*)
flags "$@" 'help --help --version --verbose install new tree uninstall upgrade solve completions'
;;
esac
}
##
#
# elm-test
#
##
_elm_test ()
{
if [ ! -d "$packages_dir" ]; then
return 0;
fi
local word="$2"
local previous_arg="$3"
case "${previous_arg}" in
install)
packages "$word" "--help"
;;
--seed)
COMPREPLY=($(compgen -W "0" -- "$word"))
;;
--fuzz)
COMPREPLY=($(compgen -W "100 500" -- "$word"))
;;
--report)
COMPREPLY=($(compgen -W "json junit console" -- "$word"))
;;
*)
flags "$@" \
"--help install --seed --fuzz --report --version --watch" \
"--compiler"
;;
esac
}
##
#
# Helpers
#
##
# Set command variable to the command found if any
# $@: list of commands
find_command ()
{
for w in ${COMP_WORDS[@]:1};do
for cmd in "$@"; do
if [ "$w" = "$cmd" ]; then
command="$cmd";
return 0
fi
done
done
return 1
}
# $@: all complete arguments + list of completion results
flags ()
{
local word="$2"
local lastarg="$3"
local flags="$4"
local flags_with_files="$5"
# Let the shell complete files for these options
for flag in $flags_with_files; do
if [ "$lastarg" = "$flag" ]; then
COMPREPLY=()
return 0
fi
done
if [ -z "$word" ]; then
# Return all flags for empty word
COMPREPLY=($flags $flags_with_files)
else
# Return flags matching the word
COMPREPLY=($(compgen -W "$flags $flags_with_files" -- "$word"))
fi
}
# packages < 0.19.0
old_packages ()
{
cat <<-'EOF'
1602/json-viewer
1hko/elm-truth-table
2mol/elm-colormaps
aardito2/realm
AaronCZim/to-elm-format-string
abadi199/dateparser
abadi199/datetimepicker
abadi199/datetimepicker-css
abradley2/elm-form-controls
abrykajlo/elm-scroll
adam-r-kowalski/Elm-Css
adam-r-kowalski/elm-css-legacy
adeschamps/mdl-context
adius/vectual
agrafix/elm-bootforms
ahstro/elm-konami-code
ahstro/elm-luhn
ahstro/elm-ssn-validation
airtucha/board
airtucha/pathfinder
AIRTucha/pathfinder
akavel/elm-expo
akbiggs/elm-effects
akbiggs/elm-game-update
akoppela/elm-autocomplete
akoppela/elm-css-extra-properties
akoppela/elm-css-extra-ptoperties
alech/elm-calendarweeks
alepop/elm-google-url-shortener
alexeisavca/keyframes.elm
alinz/elm-vector2d
allo-media/koivu
alltonp/elm-driveby
alpacaaa/elm-date-distance
aluuu/elm-check-io
alvivi/elm-css-aria
alvivi/elm-keyword-list
alvivi/elm-nested-list
alvivi/elm-widgets
amaksimov/elm-maybe-pipeline
amaksimov/elm-multikey-handling
amazzeo/elm-math-strings
ambuc/juggling-graph
amilner42/keyboard-extra
amitu/elm-formatting
andre-dietrich/elm-random-pcg-regex
andrewjackman/toasty-bootstrap
andybalaam/elm-param-parsing
antivanov/eunit
Apanatshka/elm-list-ndet
Apanatshka/elm-signal-extra
aphorisme/elm-oprocesso
apuchenkin/elm-multiway-tree-extra
apuchenkin/elm-nested-router
aramiscd/elm-basscss
aristidesstaffieri/elm-poisson
arnau/elm-feather
arowM/elm-chat-scenario
arowM/elm-check-button
arowM/elm-default
arowM/elm-embedded-gist
arowM/elm-evil-sendmsg
arowM/elm-istring
arowM/elm-monoid
arowM/elm-raw-html
arowM/elm-show
arowM/elm-time-machine
ashelab/elm-cqrs
astynax/elm-state
ASVBPREAUBV/elm-flexbox
athanclark/elm-discrete-transition
athanclark/elm-duration
athanclark/elm-every
athanclark/elm-param-parsing-2
athanclark/elm-threading
avh4/elm-diff
avh4/elm-favicon
avh4/elm-meshes
avh4/elm-spec
avh4/elm-table
avh4/elm-testable
avh4/elm-transducers
avh4/elm-typed-styles
avh4-experimental/elm-compose-programs
avh4-experimental/elm-debug-controls-without-datepicker
avh4-experimental/elm-layout
azer/elm-ui-styles
b52/elm-semantic-ui
bakkemo/elm-collision
bardt/elm-rosetree
base-dev/elm-graphql-module
bcardiff/elm-debounce
bcardiff/elm-infscroll
bChiquet/line-charts
benansell/elm-geometric-transformation
bendyworks/elm-action-cable
bernerbrau/elm-css-widgets
besuikerd/elm-dictset
billperegoy/elm-form-validations
billperegoy/elm-sifter
billstclair/elm-bitwise-infix
billstclair/elm-digital-ocean
billstclair/elm-dynamodb
billstclair/elm-html-template
billstclair/elm-recovered
billstclair/elm-recovered-utf8
billstclair/elm-s3
billstclair/elm-simple-xml-to-json
billstclair/elm-system-notification
billstclair/elm-versioned-json
billstclair/elm-xml-extra
bitrage-io/elm-ratequeue
blacksheepmails/elm-set
bloom/aviators
bloom/elm-return
bloom/remotedata
blue-dinosaur/lambda
Bogdanp/elm-ast
Bogdanp/elm-combine
Bogdanp/elm-datepicker
Bogdanp/elm-generate
Bogdanp/elm-querystring
Bogdanp/elm-route
Bogdanp/elm-time
bohdyone/elm-mdl
bowst/elm-form
brainrape/elm-ast
brainrape/elm-bidict
brainrape/flex-html
breezyboa/elm-form-field
brenden/elm-tree-diagram
BrianHicks/elm-avl-exploration
BrianHicks/elm-benchmark
brightdb/sequence
bruz/elm-simple-form-infix
bundsol/json-api-beta
bundsol/json-api-plus
burabure/elm-collision
BuraBure/elm-collision
bzimmermandev/autogrid
cacay/elm-void
cakenggt/elm-net
CallumJHays/elm-kalman-filter
CallumJHays/elm-sliders
CallumJHays/elm-unwrap
camjc/elm-quiz
canadaduane/elm-hccb
canadaduane/typed-svg
careport/elm-avl
carwow/elm-core
carwow/elm-plot
carwow/elm-theme
ccapndave/elm-effects-extra
ccapndave/elm-list-map
ccapndave/elm-reflect
ccapndave/elm-tree-path
ceddlyburge/elm-collections
Chadtech/ctpaint-keys
Chadtech/elm-loop
Chadtech/hfnss
Chadtech/keyboard-extra-browser
Chadtech/mail
Chadtech/order
Chadtech/random-pcg-pipeline
Chadtech/tuple-infix
chendrix/elm-matrix
chendrix/elm-numpad
chrisalmeida/graphqelm
chrisbuttery/elm-greeting
chrisbuttery/elm-parting
chrisbuttery/elm-scroll-progress
chrisbuttery/is-online
chrisbuttery/reading-time
circuithub/elm-array-extra
circuithub/elm-array-focus
circuithub/elm-bootstrap-html
circuithub/elm-filepickerio-api-types
circuithub/elm-function-extra
circuithub/elm-graphics-shorthand
circuithub/elm-html-extra
circuithub/elm-html-shorthand
circuithub/elm-json-extra
circuithub/elm-list-extra
circuithub/elm-list-signal
circuithub/elm-list-split
circuithub/elm-maybe-extra
circuithub/elm-number-format
circuithub/elm-result-extra
circuithub/elm-string-split
cjduncana/three-words
cjmeeks/elm-calendar
ckoster22/elm-genetic
cmditch/mel-bew3
cobalamin/elm-json-extra
cobalamin/history-tree
cobalamin/safe-int
comsysto/harvest-api
coreytrampe/elm-vendor
cotterjd/elm-mdl
crazymykl/ex-em-elm
csicar/elm-mathui
cutsea110/elm-temperature
dailydrip/elm-emoji
dalen/elm-charts
damienklinnert/elm-hue
damukles/elm-dialog
danabrams/elm-media
danabrams/elm-media-source
Dandandan/Easing
Dandandan/parser
danielnarey/elm-bulma-classes
danielnarey/elm-color-math
danielnarey/elm-css-basics
danielnarey/elm-css-frameworks
danielnarey/elm-css-math
danielnarey/elm-font-import
danielnarey/elm-form-capture
danielnarey/elm-html-tree
danielnarey/elm-input-validation
danielnarey/elm-modular-design
danielnarey/elm-modular-ui
danielnarey/elm-semantic-content
danielnarey/elm-semantic-dom
danielnarey/elm-semantic-effects
danielnarey/elm-stylesheet
danielnarey/elm-toolkit
danielspaniol/elm-tuple-extra
danmarcab/elm-retroactive
danpalmer/elm-param-parsing
danstn/elm-postgrest
danyx23/elm-dropzone
dasch/elm-basics-extra
davcamer/elm-protobuf
davidpelaez/elm-scenic
DavidTobin/elm-key
deadfoxygrandpa/elm-architecture
deadfoxygrandpa/elm-test
debois/elm-mdl
debois/elm-parts
derekdreery/elm-die-faces
derrickreimer/elm-keys
dhruvin2910/elm-css
dillonkearns/graphqelm
dillonkearns/graphqelm-demo
doodledood/elm-split-pane
dosarf/elm-guarded-input
DrBearhands/elm-json-editor
driebit/elm-html-unsafe-headers
driebit/elm-max-size-dict
drojas/elm-http-parser
drojas/elm-task-middleware
dtraft/elm-classnames
duncanmalashock/json-rest-api
dustinfarris/elm-autocomplete
dustinspecker/capitalize-word
dustinspecker/dict-key-values
dustinspecker/is-fibonacci-number
dustinspecker/last
dustinspecker/list-join-conjunction
dustinspecker/us-states
dwyl/elm-datepicker
dwyl/elm-input-tables
dzhu/elm-tags-input
dzuk-mutant/internettime
EddyLane/elm-file
edkv/elm-components
edvail/elm-polymer
eeue56/elm-all-dict
eeue56/elm-alternative-json
eeue56/elm-debug-json-view
eeue56/elm-default-dict
eeue56/elm-flat-matrix
eeue56/elm-html-in-elm
eeue56/elm-html-query
eeue56/elm-html-test
eeue56/elm-http-error-view
eeue56/elm-json-field-value
eeue56/elm-lazy
eeue56/elm-lazy-list
eeue56/elm-pretty-print-json
eeue56/elm-shrink
eeue56/elm-simple-data
eeue56/elm-stringify
eeue56/elm-xml
egillet/elm-sortable-table
elb17/multiselect-menu
eliaslfox/orderedmap
eliaslfox/queue
elm-bodybuilder/elegant
elm-bodybuilder/elm-function
elm-bodybuilder/formbuilder
elm-bodybuilder/formbuilder-autocomplete
elm-bodybuilder/formbuilder-photo
elm-canvas/element-relative-mouse-events
Elm-Canvas/element-relative-mouse-events
elm-canvas/raster-shapes
elm-community/elm-check
elm-community/elm-datepicker
elm-community/elm-function-extra
elm-community/elm-history
elm-community/elm-json-extra
elm-community/elm-lazy-list
elm-community/elm-linear-algebra
elm-community/elm-list-extra
elm-community/elm-material-icons
elm-community/elm-random-extra
elm-community/elm-route
elm-community/elm-test
elm-community/elm-time
elm-community/elm-undo-redo
elm-community/elm-webgl
elm-community/html-test-runner
elm-community/lazy-list
elm-community/linear-algebra
elm-community/material-icons
elm-community/parser-combinators
elm-community/ratio
elm-community/shrink
elm-community/svg-extra
elm-community/webgl
elm-json-hal/elm-json-hal
elm-lang/animation-frame
elm-lang/core
elm-lang/dom
elm-lang/geolocation
elm-lang/html
elm-lang/http
elm-lang/keyboard
elm-lang/lazy
elm-lang/mouse
elm-lang/navigation
elm-lang/page-visibility
elm-lang/svg
elm-lang/trampoline
elm-lang/virtual-dom
elm-lang/websocket
elm-lang/window
elm-tools/documentation
elm-tools/parser
elm-tools/parser-primitives
emilyhorsman/elm-speechrecognition-interop
emtenet/elm-component-support
enetsee/elm-color-interpolate
enetsee/elm-facet-scenegraph
enetsee/elm-scale
enetsee/facet-plot-alpha
enetsee/facet-render-svg-alpha
enetsee/facet-scenegraph-alpha
enetsee/facet-theme-alpha
enetsee/rangeslider
enetsee/typed-format
engagesoftware/elm-dnn-localization
ericgj/elm-accordion-menu
ericgj/elm-autoinput
ericgj/elm-quantiles
ersocon/creditcard-validation
erwald/elm-edit-distance
esanmiguelc/elm-validate
eskimoblood/elm-color-extra
eskimoblood/elm-parametric-surface
eskimoblood/elm-simplex-noise
eskimoblood/elm-wallpaper
etaque/elm-dialog
etaque/elm-hexagons
etaque/elm-route-parser
etaque/elm-simple-form
etaque/elm-simple-form-infix
etaque/elm-transit-router
evancz/automaton
evancz/elm-effects
evancz/elm-graphics
evancz/elm-html
evancz/elm-http
evancz/elm-markdown
evancz/elm-sortable-table
evancz/elm-svg
evancz/focus
evancz/start-app
evancz/task-tutorial
evancz/url-parser
evancz/virtual-dom
exdis/elm-sample-package
FabienHenon/elm-pull-to-refresh
FabienHenon/jsonapi-decode
fabiommendes/elm-bricks
fabiommendes/elm-dynamic-forms
fabiommendes/elm-sexpr
fauu/elm-selectable-text
fbonetti/elm-phoenix-socket
fdbeirao/elm-sliding-list
felipesere/elm-github-colors
fiatjaf/hashbow-elm
flarebyte/bubblegum-entity
flarebyte/bubblegum-graph
flarebyte/bubblegum-ui-preview
flarebyte/bubblegum-ui-preview-tag
flarebyte/bubblegum-ui-tag
flarebyte/bubblegum-ui-textarea
flarebyte/ntriples-filter
FMFI-UK-1-AIN-412/elm-formula
folkertdev/elm-bounding-box
folkertdev/elm-hexbin
folkertdev/elm-treemap
folkertdev/outmessage
folkertdev/svg-path-dsl
freakingawesome/drunk-label
fredcy/elm-debouncer
fredcy/elm-defer-command
fredcy/elm-timer
frenchdonuts/elm-autocomplete
Fresheyeball/elm-animate-css
fresheyeball/elm-cardinal
Fresheyeball/elm-cardinal
fresheyeball/elm-check-runner
Fresheyeball/elm-font-awesome
Fresheyeball/elm-function-extra
Fresheyeball/elm-guards
Fresheyeball/elm-nearly-eq
Fresheyeball/elm-number-expanded
Fresheyeball/elm-restrict-number
Fresheyeball/elm-sprite
Fresheyeball/elm-tuple-extra
Fresheyeball/elm-yala
Fresheyeball/perspective
Fresheyeball/sprite
gaborv/debouncer
garetht/elm-dynamic-style
geekyme/elm-charts
geppettodivacin/elm-couchdb
ggpeti/elm-html-decoder
ggPeti/elm-html-decoder
ghivert/elm-cloudinary
ghivert/elm-colors
ghivert/elm-data-dumper
ghivert/elm-mapbox
gilbertkennen/bigint
gilesbowkett/html-escape-sequences
Gizra/elm-compat-017
Gizra/elm-compat-018
Gizra/elm-dictlist
Gizra/elm-essentials
Gizra/elm-restful
GlobalWebIndex/segment-elm
gmauricio/elm-semantic-ui
gribouille/elm-graphql
gribouille/elm-prelude
gribouille/elm-table
grrinchas/elm-graphql-client
grrinchas/elm-natural
Guid75/ziplist
guillaumeboudon/elm-creditcard
gummesson/elm-csv
h0lyalg0rithm/elm-select
halfzebra/elm-aframe
halfzebra/elm-sierpinski
hanshoglund/elm-interval
hardfire/elm-ad-bs
hawx/elm-mixpanel
hendore/elm-adorable-avatars
hendore/elm-port-message
hendore/elm-temperature
heyLu/elm-format-date
hickscorp/elm-bigint
hoelzro/elm-drag
HolyMeekrob/elm-font-awesome-5
hugobessaa/elm-logoot
humio/elm-plot
ianp/elm-datepicker
icidasset/css-support
id3as/elm-datastructures
identicalsnowflake/elm-dynamic-style
identicalsnowflake/elm-typed-styles
imbybio/cachedremotedata
imbybio/outmessage-nested
imeckler/either
imeckler/empty
imeckler/iterator
imeckler/piece
imeckler/queue
imeckler/ratio
imeckler/stage
indicatrix/elm-bootstrap
ingara/elm-asoiaf-api
InsideSalesOfficial/isdc-elm-ui
iosphere/elm-i18n
iosphere/elm-logger
iosphere/elm-network-graph
iosphere/elm-toast
ir4y/elm-cursor
ivanceras/svgbob
izdi/junk
jackfranklin/elm-console-log
jackfranklin/elm-statey
jackwillis/elm-dialog
jahewson/elm-graphql-module
jamby1100/elm-blog-engine
jamesmacaulay/elm-json-bidirectional
janiczek/cmd-extra
Janiczek/color-hcl
Janiczek/distinct-colors
Janiczek/elm-architecture-test
Janiczek/elm-encoding
janiczek/elm-markov
Janiczek/package-info
jaredramirez/elm-parser
JasonGFitzpatrick/elm-router
jasonmahr/html-escaped-unicode
jasonmahr/html-escape-sequences
jasonmfry/elm-bootstrap
JasonMFry/elm-bootstrap
jastice/boxes-and-bubbles
jastice/forkitharder-elm
jastice/forkithardermakeitbetter
jastice/president
javcasas/elm-decimal
javcasas/elm-integer
jcollard/elm-playground
jcollard/key-constants
jeffesp/elm-vega
jergason/elm-hash
jessitron/elm-http-with-headers
jessitron/elm-param-parsing
jfairbank/elm-stream
jfmengels/elm-ast
jims/graphqelm
jinjor/elm-csv-decode
jinjor/elm-html-parser
jinjor/elm-inline-hover
jinjor/elm-time-travel
jinjor/elm-transition
jirichmiel/minimax
jmackie4/elm-bulma
jmg-duarte/group-list
joeandaverde/flex-html
JOEANDAVERDE/flex-html
joefiorini/elm-time-machine
JoelQ/elm-dollar
JoeyEremondi/array-multidim
JoeyEremondi/elm-MultiDimArray
JoeyEremondi/elm-SafeLists
JoeyEremondi/elm-typenats
JoeyEremondi/LoadAssets
JoeyEremondi/safelist
JoeyEremondi/typenats
johnathanbostrom/selectlist
johnathanbostrom/selectlist-extra
john-kelly/elm-interactive-graphics
john-kelly/elm-postgrest
john-kelly/elm-rest
johnpmayer/elm-linear-algebra
johnpmayer/elm-opaque
johnpmayer/elm-webgl
johnpmayer/state
johnpmayer/tagtree
johnpmayer/vec2
jonathanfishbein1/elm-comment
joneshf/elm-
joneshf/elm-comonad
joneshf/elm-constraint
joneshf/elm-mom
joneshf/elm-proof
joneshf/elm-proxy
joneshf/elm-tail-recursion
joneshf/elm-these
joonazan/elm-ast
joonazan/elm-gol
joonazan/elm-type-inference
JordyMoos/elm-clockpicker
JordyMoos/elm-pageloader
JordyMoos/elm-quiz
joshforisha/elm-entities
jpagex/elm-geoip
jpagex/elm-loader
jreut/elm-grid
jsanchesleao/elm-assert
jschonenberg/elm-dropdown
jtanguy/moulin-rouge
jterbraak/DateOp
jtojnar/elm-json-tape
juanedi/charty
JulianKniephoff/elm-time-extra
justgook/elm-image-encode
justgook/elm-tiled-decode
justinmimbs/elm-arc-diagram
justinmimbs/elm-date-extra
justinmimbs/elm-date-selector
JustusAdam/elm-path
jvdvleuten/url-parser-combinator
jvoigtlaender/elm-drag
jvoigtlaender/elm-drag-and-drop
jvoigtlaender/elm-gauss
jvoigtlaender/elm-memo
jvoigtlaender/elm-warshall
jwmerrill/elm-animation-frame
jwoudenberg/elm-test-experimental
jwoudenberg/html-typed
jxxcarlson/convolvemachine
jxxcarlson/geometry
jxxcarlson/graphdisplay
jxxcarlson/minilatex
jxxcarlson/particle
jystic/elm-font-awesome
kallaspriit/elm-basic-auth
kalutheo/elm-snapshot-tests
karldray/elm-ref
kennib/elm-maps
kennib/elm-swipe
kfish/glsl-pasta
kfish/quaternion
kintail/elm-publish-test
kintail/input-widget
klaftertief/elm-heatmap
knewter/elm-rfc5988-parser
knledg/touch-events
koctya/elm-plot
koyachi/elm-sha
kress95/random-pcg-extra
krisajenkins/elm-cdn
krisajenkins/elm-dialog
krisajenkins/formatting
krisajenkins/history
ktonon/elm-aws-core
ktonon/elm-child-update
ktonon/elm-english-dictionary
ktonon/elm-hmac
ktonon/elm-memo-pure
ktonon/elm-serverless
ktonon/elm-serverless-auth-jwt
ktonon/elm-serverless-cors
ktonon/url-parser
KtorZ/elm-notification
Kwarrtz/render
lagunoff/elm-mdl
larribas/elm-image-slider
larribas/elm-multi-email-input
laszlopandy/elm-console
lattenwald/elm-base64
layer6ai/elm-filter-box
layer6ai/elm-query-builder
leonardanyer/elm-combox
Leonti/elm-material-datepicker
Leonti/elm-time-picker
lgastako/elm-select
liamcurry/elm-media
LiberisFinance/elm-charts
Logiraptor/elm-bench
lorenzo/elm-string-addons
lorenzo/elm-tree-diagram
lovasoa/choices
lovasoa/elm-component-list
lovasoa/elm-format-number
lovasoa/elm-jsonpseudolist
lovasoa/elm-median
lovasoa/elm-nested-list
lucamug/elm-style-framework
lucamug/elm-styleguide-generator
lucasssm/simpledate
ludvigsen/elm-svg-ast
luftzig/elm-quadtree
Luftzig/elm-quadtree
lukewestby/accessible-html-with-css-temp
lukewestby/elm-http-extra
lukewestby/elm-i18n
lukewestby-fake-elm-lang-1/redirect-test-1
lukewestby/lru-cache
lukewestby/package-info
lukewestby/worker
lzrski/elm-polymer
m00qek/elm-applicative
M1chaelTran/elm-graphql
maksar/elm-function-extra
maksar/elm-workflow
maorleger/elm-flash
maorleger/elm-infinite-zipper
marcosccm/elm-datepicker
mariohuizar/elm-charts
mariohuizar/elm-plot
MartinKavik/elm-combinatorics
martinos/elm-sortable-table
martinsk/elm-datastructures
martin-volf/elm-jsonrpc
massung/elm-css
matheus23/elm-drag-and-drop
matheus23/please-focus-more
matth-/elm-keyboard-keys
MatthewJohnHeath/elm-fingertree
matthewrankin/elm-mdl
mattjbray/elm-prismicio
mattrrichard/elm-disjoint-set
maximoleinyk/elm-parser-utils
maxsnew/IO
maxsnew/lazy
MazeChaZer/elm-ckeditor
mbr/elm-mouse-events
mbylstra/elm-html-helpers
mc706/elm-clarity-ui
mdgriffith/elm-animation-pack
mdgriffith/elm-color-mixing
mdgriffith/elm-debug-watch
mdgriffith/elm-html-animation
mdgriffith/elm-style-animation-0.16
mdgriffith/elm-style-animation-zero-sixteen
mgold/Elm-Align-Distribute
mgold/elm-date-format
mgold/Elm-Format-String
mgold/elm-join
mgold/Elm-Multiset
mgold/elm-random-pcg
mgold/elm-random-sample
mgold/Elm-Random-Sampling
mgold/elm-socketio
mgold/elm-turtle-graphics
MichaelCombs28/elm-dom
MichaelCombs28/elm-mdl
MichaelCombs28/elm-parts
MichaelCombs28/unit-list
micktwomey/elmo-8
MikaelMayer/parser
milesrock/elm-creditcard
miyamoen/elm-todofuken
mkovacs/quaternion
mmetcalfe/elm-random-distributions
monty5811/remote-list
mpdairy/elm-component-updater
mpizenberg/elm-debounce
mpizenberg/elm-image-annotation
mpizenberg/elm-image-collection
mpizenberg/elm-mouse-compat
mpizenberg/elm-mouse-events
mpizenberg/elm-touch-events
mrpinsky/elm-keyed-list
mrumkovskis/pine
mrvicadai/elm-palette
mrvicadai/elm-stats
mthadley/elm-byte
mukeshsoni/elm-rope
mulander/diceware
mxgrn/elm-phoenix-socket
myrho/dive
myrho/elm-statistics
naddeoa/elm-simple-bootstrap
naddeoa/quick-cache
naddeoa/stream
nathanfox/elm-string-format
nathanjohnson320/coinmarketcap-elm
nathanjohnson320/ecurve
nathanjohnson320/elmark
Natim/elm-workalendar
ndr-qef/microkanren.elm
nedSaf/elm-bootstrap-grid
neurodynamic/elm-parse-html
newlandsvalley/elm-abc-parser
newlandsvalley/elm-comidi