From 6c40eb9bbb518329fe9911158e993999e7a7c8d9 Mon Sep 17 00:00:00 2001 From: Sander Hautvast Date: Mon, 12 Feb 2024 15:25:29 +0100 Subject: [PATCH] Update eclipsejdt_lsp.md --- cmd/eclipsejdt_lsp.md | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/cmd/eclipsejdt_lsp.md b/cmd/eclipsejdt_lsp.md index 8ff5137..d5dfe6c 100644 --- a/cmd/eclipsejdt_lsp.md +++ b/cmd/eclipsejdt_lsp.md @@ -13,16 +13,20 @@ java -jar plugins/org.eclipse.equinox.launcher_1.6.700.v20231214-2017.jar \ ``` \# -data needs local workspace -``` -java -jar plugins/org.eclipse.equinox.launcher_1.6.700.v20231214-2017.jar \ --Declipse.application=org.eclipse.jdt.ls.core.id1 \ --Dosgi.bundles.defaultStartLevel=4 \ --Declipse.product=org.eclipse.jdt.ls.core.product \ --Dlog.level=ALL \ --Xmx1G \ ---add-modules=ALL-SYSTEM \ ---add-opens java.base/java.util=ALL-UNNAMED \ ---add-opens java.base/java.lang=ALL-UNNAMED \ --configuration ./config_mac \ --data . +```rust +OsString::from("-jar"), +OsString::from("/../jdt-language-server-1.31.0-202401111522/plugins/org.eclipse.equinox.launcher_1.6.700.v20231214-2017.jar"), +OsString::from("-Declipse.application=org.eclipse.jdt.ls.core.id1"), +OsString::from("-Dosgi.bundles.defaultStartLevel=4"), +OsString::from("-Declipse.product=org.eclipse.jdt.ls.core.product"), +OsString::from("-Dlog.level=ALL"), +OsString::from("-Xmx1G"), +OsString::from("--add-modules=ALL-SYSTEM"), +OsString::from("--add-opens"), +OsString::from("java.base/java.util=ALL-UNNAMED"), +OsString::from("--add-opens java.base/java.lang=ALL-UNNAMED"), +OsString::from("-configuration"), +OsString::from("/../jdt-language-server-1.31.0-202401111522/config_mac_arm"), +OsString::from("-data"), +OsString::from("/Users/FJ19WK/Developer/SH/dbmaker"), ```