75090
|
1 |
#!/usr/bin/env bash
|
|
2 |
#
|
|
3 |
# Author: Makarius
|
|
4 |
#
|
|
5 |
# DESCRIPTION: run Isabelle/VSCode using local VSCodium installation
|
|
6 |
|
75240
|
7 |
export ISABELLE_VSCODE_SYMBOLS="$(platform_path "$ISABELLE_VSCODE_WORKSPACE/symbols.json")"
|
|
8 |
|
75090
|
9 |
DIR="$(isabelle vscode_setup -C)" || exit "$?"
|
|
10 |
exec "$DIR/bin/codium" \
|
75170
|
11 |
--locale en-US \
|
75098
|
12 |
--user-data-dir "$(platform_path "$ISABELLE_VSCODE_SETTINGS"/user-data)" \
|
75090
|
13 |
--extensions-dir "$(platform_path "$ISABELLE_VSCODE_SETTINGS"/extensions)" \
|
|
14 |
"$@"
|