summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Mühlenberend <felix.muehlenberend@mailbox.org>2026-02-04 18:33:32 +0100
committerGitHub <noreply@github.com>2026-02-04 18:33:32 +0100
commit995bd712eef01e9303bc2e3262ff7f20a401a9ed (patch)
treeb1a7cfe63602f2b07090047c54d24b5a819afe2d
parent51493a00806fe43989b87cd34de2715d523aadb8 (diff)
Fixed incorrect environment variable syntax in README (#288)
Updated syntax for specifying environment variables in :env according to #278. Tested locally. Copyright-paperwork-exempt: yes
-rw-r--r--README.org2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.org b/README.org
index 041a82e..0b3a471 100644
--- a/README.org
+++ b/README.org
@@ -138,7 +138,7 @@ See [[https://code.visualstudio.com/docs/cpp/launch-json-reference][options]].
2. Prepend the =llvm= path to the =PATH= variable (=$(brew --prefix --installed llvm)/bin=)
3. =M-x dape= and pass in arguments of interest
- To pass arguments, use =:args ["arg1" "arg2" ..]=
- - To pass environment variables, use =:env ["RUST_LOG=WARN" "FOO=BAR"]=
+ - To pass environment variables, use =:env (:RUST_LOG "WARN" :FOO "BAR")=
- To use a different program instead of =a.out= (e.g., for Rust), use =:program "target/debug/<crate_name>"=
** Python - debugpy