Fri, 18 Oct 2019 17:37:58 -0500
fix all vi mode special bindings
786 | 1 | #!/bin/bash |
2 | set -eu -o pipefail | |
249
5bba2e094584
Move helper scripts into bin with common names
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
3 | |
786 | 4 | dists=( |
694
7c7e47abe4e1
make this run on windows
Meredith Howard <mhoward@roomag.org>
parents:
692
diff
changeset
|
5 | Perl::Tidy |
695 | 6 | Pod::Cpandoc |
308 | 7 | |
694
7c7e47abe4e1
make this run on windows
Meredith Howard <mhoward@roomag.org>
parents:
692
diff
changeset
|
8 | experimentals |
255 | 9 | |
694
7c7e47abe4e1
make this run on windows
Meredith Howard <mhoward@roomag.org>
parents:
692
diff
changeset
|
10 | Reply |
7c7e47abe4e1
make this run on windows
Meredith Howard <mhoward@roomag.org>
parents:
692
diff
changeset
|
11 | Data::Printer |
7c7e47abe4e1
make this run on windows
Meredith Howard <mhoward@roomag.org>
parents:
692
diff
changeset
|
12 | Data::Printer::Filter::JSON |
7c7e47abe4e1
make this run on windows
Meredith Howard <mhoward@roomag.org>
parents:
692
diff
changeset
|
13 | Data::Printer::Filter::URI |
7c7e47abe4e1
make this run on windows
Meredith Howard <mhoward@roomag.org>
parents:
692
diff
changeset
|
14 | Carp::Always |
7c7e47abe4e1
make this run on windows
Meredith Howard <mhoward@roomag.org>
parents:
692
diff
changeset
|
15 | B::Keywords |
7c7e47abe4e1
make this run on windows
Meredith Howard <mhoward@roomag.org>
parents:
692
diff
changeset
|
16 | Term::ReadLine::Gnu |
7c7e47abe4e1
make this run on windows
Meredith Howard <mhoward@roomag.org>
parents:
692
diff
changeset
|
17 | Class::Refresh |
7c7e47abe4e1
make this run on windows
Meredith Howard <mhoward@roomag.org>
parents:
692
diff
changeset
|
18 | Pry |
249
5bba2e094584
Move helper scripts into bin with common names
Meredith Howard <mhoward@roomag.org>
parents:
diff
changeset
|
19 | |
694
7c7e47abe4e1
make this run on windows
Meredith Howard <mhoward@roomag.org>
parents:
692
diff
changeset
|
20 | Path::Tiny |
7c7e47abe4e1
make this run on windows
Meredith Howard <mhoward@roomag.org>
parents:
692
diff
changeset
|
21 | Getopt::Long::Descriptive |
786 | 22 | ) |
23 | ||
24 | command -v cpm &>/dev/null || | |
25 | cpanm App::cpm | |
26 | ||
27 | exec cpm install -g "${dists[@]}" |