Skip to content

Instantly share code, notes, and snippets.

@yvvki
Created October 27, 2024 08:55
Show Gist options
  • Save yvvki/3ab1db076fd771e25820ebcc636c83fd to your computer and use it in GitHub Desktop.
Save yvvki/3ab1db076fd771e25820ebcc636c83fd to your computer and use it in GitHub Desktop.
Running VSCode directly from WSL
#!/usr/bin/env bash
export WSLENV=VSCODE_DEV/w:ELECTRON_RUN_AS_NODE/w
VSCODE_PATH="$(dirname "$(dirname "$(realpath "$0")")")"
VSCODE_EXEC="$VSCODE_PATH/Code.exe"
VSCODE_CLI=$(wslpath -w "$VSCODE_PATH/resources/app/out/cli.js")
export VSCODE_DEV=
export ELECTRON_RUN_AS_NODE=1
check_and_convert_to_windows_path() {
# Check if the argument is a flag
if [[ "$1" == -* ]]; then
echo "$1" # Return the argument as-is
else
# Convert Linux path to Windows path format
wslpath -w "$1"
fi
}
ARGS=()
for arg in "$@"; do
ARGS+=($(check_and_convert_to_windows_path "$arg"))
done
"$VSCODE_EXEC" "$VSCODE_CLI" "${ARGS[@]}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment