aboutsummaryrefslogtreecommitdiff
path: root/docs/de/cli.md
diff options
context:
space:
mode:
authorErovia <Erovia@users.noreply.github.com>2021-07-23 21:41:33 +0100
committerGitHub <noreply@github.com>2021-07-23 21:41:33 +0100
commitfdcea0633657fba4cebcef45eee2f103d162e28c (patch)
tree6d547e2154fa55aea125bc6fc08420c18c8f232a /docs/de/cli.md
parent164a74a078722cc488526c0c8fcbc4e1b54a5780 (diff)
downloadqmk_firmware-fdcea0633657fba4cebcef45eee2f103d162e28c.tar.gz
qmk_firmware-fdcea0633657fba4cebcef45eee2f103d162e28c.zip
CLI/Docs: Fix the format commands' name (#13668)
PR #13296 changed the name of the `cformat` and `pyformat` commands to `format-c` and `format-py` respectively. This PR updates the documentation and some parts of the CLI to use the new names. Also add documentation for the new `format-text` subcommand, introduced in the same PR.
Diffstat (limited to 'docs/de/cli.md')
-rw-r--r--docs/de/cli.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/de/cli.md b/docs/de/cli.md
index 437062ad6..7dc02d505 100644
--- a/docs/de/cli.md
+++ b/docs/de/cli.md
@@ -88,14 +88,14 @@ qmk compile <configuratorExport.json>
88qmk compile -kb <keyboard_name> -km <keymap_name> 88qmk compile -kb <keyboard_name> -km <keymap_name>
89``` 89```
90 90
91## `qmk cformat` 91## `qmk format-c`
92 92
93Dieser Befehl formatiert C-Code im clang-Format. Benutze ihn ohne Argumente, um den core-Code zu formatieren, oder benutze Namen von Dateien in der CLI, um den Befehl auf bestimmte Dateien anzuwenden. 93Dieser Befehl formatiert C-Code im clang-Format. Benutze ihn ohne Argumente, um den core-Code zu formatieren, oder benutze Namen von Dateien in der CLI, um den Befehl auf bestimmte Dateien anzuwenden.
94 94
95**Anwendung**: 95**Anwendung**:
96 96
97``` 97```
98qmk cformat [file1] [file2] [...] [fileN] 98qmk format-c [file1] [file2] [...] [fileN]
99``` 99```
100 100
101## `qmk config` 101## `qmk config`
@@ -148,14 +148,14 @@ Dieser Befehl erstellt eine neue Keymap basierend auf einer existierenden Standa
148qmk new-keymap [-kb KEYBOARD] [-km KEYMAP] 148qmk new-keymap [-kb KEYBOARD] [-km KEYMAP]
149``` 149```
150 150
151## `qmk pyformat` 151## `qmk format-py`
152 152
153Dieser Befehl formatiert Python-Code in `qmk_firmware`. 153Dieser Befehl formatiert Python-Code in `qmk_firmware`.
154 154
155**Anwendung**: 155**Anwendung**:
156 156
157``` 157```
158qmk pyformat 158qmk format-py
159``` 159```
160 160
161## `qmk pytest` 161## `qmk pytest`