Skip to content

Commit

Permalink
fix(command): Improve command desc
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Oct 13, 2023
1 parent 3dee569 commit 1df7b6f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cmds/core/command.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"use strict";

exports.command = ['command [names..]', 'cmd [names..]'];
exports.desc = 'Run custom command';
exports.desc = 'Run elisp commands named [names..]';
exports.builder = yargs => yargs
.positional(
'[names..]', {
Expand Down
4 changes: 2 additions & 2 deletions docs/content/en/Getting-Started/Basic-Usage/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Usage: eask <command> [options..]
Commands:
archives List out all package archives [aliases: sources]
clean <type> Delete various files produced during building
command [names..] Run custom command [aliases: cmd]
command [names..] Run elisp commands named [names..] [aliases: cmd]
compile [names..] Byte compile all Emacs Lisp files in the package
create <type> Create a new elisp project
docker <version> [args..] Launch specified Emacs version in a Docker container
Expand All @@ -60,7 +60,7 @@ Commands:
recipe Suggest a recipe format
refresh Download package archives
reinstall [names..] Reinstall packages
run [names..] Run the script named [names..] [aliases: run-script]
run [names..] Run script nameds [names..] [aliases: run-script]
search [queries..] Search packages
status Display the state of the workspace
test <type> Run test
Expand Down
4 changes: 2 additions & 2 deletions docs/content/zh-TW/Getting-Started/Basic-Usage/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Usage: eask <command> [options..]
Commands:
archives List out all package archives [aliases: sources]
clean <type> Delete various files produced during building
command [names..] Run custom command [aliases: cmd]
command [names..] Run elisp commands named [names..] [aliases: cmd]
compile [names..] Byte compile all Emacs Lisp files in the package
create <type> Create a new elisp project
docker <version> [args..] Launch specified Emacs version in a Docker container
Expand All @@ -57,7 +57,7 @@ Commands:
recipe Suggest a recipe format
refresh Download package archives
reinstall [names..] Reinstall packages
run [names..] Run the script named [names..] [aliases: run-script]
run [names..] Run script nameds [names..] [aliases: run-script]
search [queries..] Search packages
status Display the state of the workspace
test <type> Run test
Expand Down

0 comments on commit 1df7b6f

Please sign in to comment.