Index: gc_lang/fr/nodejs/cli/bin/gramma-cli.js ================================================================== --- gc_lang/fr/nodejs/cli/bin/gramma-cli.js +++ gc_lang/fr/nodejs/cli/bin/gramma-cli.js @@ -120,11 +120,23 @@ tfoption: { short: "", arg: "+/-name", description: "Définit les options à utiliser par le formateur de texte.", execute: "" - } + }, + dicomain: { + short: "", + arg: "path/json", + description: "Charge un dictionnaire principal.", + execute: "" + }, + dicoperso: { + short: "", + arg: "path/json", + description: "Charge un dictionnaire personnel.", + execute: "" + }, }; var cmdOne = ["json", "perf", "help", "exit"]; var cmdMulti = ["text", "format", "check", "lexique", "spell", "suggest", "morph", "lemma"]; @@ -474,11 +486,11 @@ repAction["help"].push(""); repAction["help"].push("========================= Les commandes/arguments: ========================"); repAction["help"].push(""); for (const action in cmdAction) { - repAction["help"].push(action.padEnd(10, " ") + ": " + cmdAction[action].arg.padEnd(8, " ") + ": " + cmdAction[action].description); + repAction["help"].push(action.padEnd(10, " ") + ": " + cmdAction[action].arg.padEnd(10, " ") + ": " + cmdAction[action].description); } repAction["help"].push(""); repAction["help"].push("================================== Note: =================================="); repAction["help"].push(""); repAction["help"].push("En mode client: les arguments sont de la forme «--argument» !"); Index: gc_lang/fr/nodejs/cli/readme.md ================================================================== --- gc_lang/fr/nodejs/cli/readme.md +++ gc_lang/fr/nodejs/cli/readme.md @@ -12,27 +12,29 @@ > npm install grammalecte-cli -g ## Commandes -| Commande | Argument | Description | -| --------- | -------- | ------------------------------------------------------------- | -| help | | Affiche les informations que vous lisez ;) | -| perf | on/off | Permet d’afficher le temps d’exécution des commandes. | -| json | on/off | Réponse en format json. | -| exit | | Client interactif : permet de le quitter. | -| text | texte | Client / Server: Définir un texte pour plusieurs actions. | -| format | texte | Permet de mettre en forme le texte. | -| check | texte | Vérifie la grammaire et l’orthographe d'un texte. | -| lexique | texte | Affiche le lexique du texte. | -| spell | mot | Vérifie l’existence d'un mot. | -| suggest | mot | Suggestion des orthographes possible d’un mot. | -| morph | mot | Affiche les informations pour un mot. | -| lemma | mot | Donne le lemme d’un mot. | -| gceoption | +/-name | Définit les options à utiliser par le correcteur grammatical. | -| gcerule | +/-name | Définit les règles à exclure par le correcteur grammatical. | -| tfoption | +/-name | Définit les options à utiliser par le formateur de texte. | +| Commande | Argument | Description | +| --------- | --------- | ------------------------------------------------------------- | +| help | | Affiche les informations que vous lisez ;) | +| perf | on/off | Permet d’afficher le temps d’exécution des commandes. | +| json | on/off | Réponse en format json. | +| exit | | Client interactif : permet de le quitter. | +| text | texte | Client / Server: Définir un texte pour plusieurs actions. | +| format | texte | Permet de mettre en forme le texte. | +| check | texte | Vérifie la grammaire et l’orthographe d'un texte. | +| lexique | texte | Affiche le lexique du texte. | +| spell | mot | Vérifie l’existence d'un mot. | +| suggest | mot | Suggestion des orthographes possible d’un mot. | +| morph | mot | Affiche les informations pour un mot. | +| lemma | mot | Donne le lemme d’un mot. | +| gceoption | +/-name | Définit les options à utiliser par le correcteur grammatical. | +| gcerule | +/-name | Définit les règles à exclure par le correcteur grammatical. | +| tfoption | +/-name | Définit les options à utiliser par le formateur de texte. | +| dicomain | path/json | Charge un dictionnaire principal. | +| dicoperso | path/json | Charge un dictionnaire personnel. | ## Client interactif Le mode interactif est un mode question/réponse. Pour le lancer vous devez saisir `gramma-cli -i`.