diff --git a/docs b/docs index cc09d981..ccce6f04 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit cc09d981358a438ad474485a89ee5ddbc1842c65 +Subproject commit ccce6f04e2e54dd3e08c83f23480a49823c8f5c7 diff --git a/platformio/commands/project.py b/platformio/commands/project.py index 6900ce74..bd37175a 100644 --- a/platformio/commands/project.py +++ b/platformio/commands/project.py @@ -69,7 +69,7 @@ def project_config(project_dir, json_output): return None -@cli.command("idedata", short_help="Dump data intended for IDE extensions/plugins") +@cli.command("data", short_help="Dump data intended for IDE extensions/plugins") @click.option( "-d", "--project-dir", @@ -78,7 +78,7 @@ def project_config(project_dir, json_output): ) @click.option("-e", "--environment", multiple=True) @click.option("--json-output", is_flag=True) -def project_idedata(project_dir, environment, json_output): +def project_data(project_dir, environment, json_output): if not is_platformio_project(project_dir): raise NotPlatformIOProjectError(project_dir) with fs.cd(project_dir):