@@ -328,12 +328,12 @@ $ eask [GLOBAL-OPTIONS] run script [NAMES..]
328328
329329Run the command.
330330
331+ Alias: ` cmd `
332+
331333``` sh
332334$ eask [GLOBAL-OPTIONS] run command [NAMES..]
333335```
334336
335- Alias: ` cmd `
336-
337337## 🔍 eask docker
338338
339339Launch specified Emacs version in a Docker container.
@@ -540,6 +540,8 @@ $ eask [GLOBAL-OPTIONS] link add <name> <path>
540540
541541Deletes the link for the given packages.
542542
543+ Alias: ` remove `
544+
543545``` sh
544546$ eask [GLOBAL-OPTIONS] link delete [names..]
545547```
@@ -558,6 +560,8 @@ $ eask [GLOBAL-OPTIONS] link list
558560
559561Delete ` .eask ` from the current workspace.
560562
563+ Alias: ` .eask `
564+
561565``` sh
562566$ eask [GLOBAL-OPTIONS] clean workspace
563567```
@@ -568,8 +572,6 @@ $ eask [GLOBAL-OPTIONS] clean workspace
568572$ eask clean workspace -g
569573```
570574
571- Alias: ` .eask `
572-
573575## 🔍 eask clean elc
574576
575577Delete all ` .elc ` files. This would respect to your ` Eask ` file.
@@ -582,12 +584,12 @@ $ eask [GLOBAL-OPTIONS] clean elc
582584
583585Delete dist subdirectory.
584586
587+ Alias: ` distribution `
588+
585589``` sh
586590$ eask [GLOBAL-OPTIONS] clean dist
587591```
588592
589- Alias: ` distribution `
590-
591593## 🔍 eask clean autoloads
592594
593595Remove generated autoloads file.
@@ -623,13 +625,13 @@ This command is the combination of all other clean commands.
623625- ` clean pkg-file `
624626- ` clean log-file `
625627
628+ Alias: ` everything `
629+
626630``` sh
627631$ eask [GLOBAL-OPTIONS] clean all
628632```
629633
630- Alias: ` everything `
631-
632- # 🚩 Linter
634+ # 🚩 Linting
633635
634636Commands that lint your Emacs package.
635637
@@ -711,12 +713,12 @@ $ eask [GLOBAL-OPTIONS] lint declare [FILES..]
711713
712714Run [ relint] ( https://github.com/mattiase/relint ) .
713715
716+ Alias: ` lint relint `
717+
714718``` sh
715719$ eask [GLOBAL-OPTIONS] lint regexps [FILES..]
716720```
717721
718- Alias: ` lint relint `
719-
720722# 🚩 Testing
721723
722724## 🔍 eask test activate
@@ -769,6 +771,40 @@ $ eask [GLOBAL-OPTIONS] test melpazoid [DIRECTORIES..]
769771💡 If ** [ DIRECTORIES..] ** is not passed in; it will use the current workspace instead.
770772{{< /hint >}}
771773
774+ # 🚩 Control DSL
775+
776+ List of commands that control DSL.
777+
778+ ## 🔍 eask source add
779+
780+ Add an archive source.
781+
782+ ``` sh
783+ $ eask [GLOBAL-OPTIONS] source add < NAME> [URL]
784+ ```
785+
786+ ## 🔍 eask source delete
787+
788+ Remove an archive source.
789+
790+ Alias: ` remove `
791+
792+ ``` sh
793+ $ eask [GLOBAL-OPTIONS] source delete < NAME>
794+ ```
795+
796+ ## 🔍 eask source list
797+
798+ List all source information.
799+
800+ ``` sh
801+ $ eask [GLOBAL-OPTIONS] source list
802+ ```
803+
804+ {{< hint info >}}
805+ 💡 This command is the same as ` $ eask archives ` !
806+ {{< /hint >}}
807+
772808# 🚩 Utilities
773809
774810Other helper commands.
0 commit comments