From ee974ec491c09f67c4a47fe743680f49acb33a87 Mon Sep 17 00:00:00 2001 From: hjk Date: Mon, 12 Jul 2021 11:50:48 +0200 Subject: [PATCH] Utils: Mention environment dialog += and =+ to append and prepend Change-Id: I9aea9c7bbdfcbdc164c0233b0b12fd634c4b2a47 Reviewed-by: Eike Ziller --- src/libs/utils/environmentdialog.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libs/utils/environmentdialog.cpp b/src/libs/utils/environmentdialog.cpp index 123a571646b..7a8b8f588fa 100644 --- a/src/libs/utils/environmentdialog.cpp +++ b/src/libs/utils/environmentdialog.cpp @@ -46,6 +46,8 @@ Utils::optional EnvironmentDialog::getEnvironmentItems( tr("Edit Environment"), tr("Enter one environment variable per line.\n" "To set or change a variable, use VARIABLE=VALUE.\n" + "To append to a variable, use VARIABLE+=VALUE.\n" + "To prepend to a variable, use VARIABLE=+VALUE.\n" "Existing variables can be referenced in a VALUE with ${OTHER}.\n" "To clear a variable, put its name on a line with nothing else on it.\n" "To disable a variable, prefix the line with \"#\"."));