You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Check Docker container existence before spawning LSP
- Use local executable if container is missing or check fails
- Remove redundant error handling and fallback logic
- Improve debug and warn tracing for process selection
- Ensure consistent argument handling for both modes
Copy file name to clipboardExpand all lines: README.md
+13-1Lines changed: 13 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -215,11 +215,17 @@ Logs are written to a temporary directory. On Unix systems, this is located at `
215
215
tail -f /tmp/lspdock_rust-analyzer.log
216
216
```
217
217
218
-
219
218
## CLI Arguments <aid="cli-arguments"></a>
220
219
221
220
The following arguments can be used. These arguments take precedence over the config file. If an argument is provided, the config file field (if it exists) will be overridden. All arguments passed after `--` will be forwarded to the LSP. If any of these arguments are included, and the LSP arguments are passed directly, e.g. `lspdock --stdio`, all arguments will be sent directly to the LSP.
222
221
222
+
**Variable Expansion:** CLI arguments support the same variable expansion as the config file (`$CWD`, `$PARENT`, `$HOME`). Use single quotes to prevent shell expansion:
0 commit comments