From e6b7ec66962cceb59dcf15c0c1426e9f660eb5a6 Mon Sep 17 00:00:00 2001 From: Gunnar Wagenknecht Date: Thu, 19 Oct 2023 13:37:46 +0200 Subject: [PATCH] Emphasize lack of space --- docs/common/projectviews.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/common/projectviews.md b/docs/common/projectviews.md index 9ea0ff75..3a6d16e1 100644 --- a/docs/common/projectviews.md +++ b/docs/common/projectviews.md @@ -147,14 +147,14 @@ For details please read the JavaDoc (and Java code) of [ProjectPerPackageProvisi ### `target_provisioning_settings` A list of settings to further tweak the `target_provisioning_strategy`. -The syntax of each entry is `key = value`, where `key` and `value` are expected string values (without any whitespace characters). +The syntax of each entry is `key=value`, where `key` and `value` are expected string values (note the absence of whitespace characters). ### `project_mappings` A list of mappings from targets (typically from external repositories) to projects in the IDE. This should be used in combination with `--override_repository`. -The syntax of each entry is `target = projecturi`, where `target` is typically an external repository (eg., `@myjar`) and `projecturi` the project type and path (eg., `project:/my-jar`). +The syntax of each entry is `target=projecturi` (no space around equals sign), where `target` is typically an external repository (eg., `@myjar`) and `projecturi` the project type and path (eg., `project:/my-jar`). Currently only the scheme `project:` is supported, which will map to an existing Eclipse/Language Server project with the given name. Out of the box the language server as well as the Eclipse feature resolves references to other Bazel workspaces using the workspace name.