lib/Tools/vscode
changeset 75257 d1e5f9dbf885
parent 75252 41dfe941c3da
child 75273 f1c6e778e412
equal deleted inserted replaced
75256:5055c0cdabc9 75257:d1e5f9dbf885
     1 #!/usr/bin/env bash
     1 #!/usr/bin/env bash
     2 #
     2 #
     3 # Author: Makarius
     3 # Author: Makarius
     4 #
     4 #
     5 # DESCRIPTION: run Isabelle/VSCode using local VSCodium installation
     5 # DESCRIPTION: run Isabelle/VSCode (requires "vscodium-X.YY.Z" component)
     6 
     6 
     7 DIR="$(isabelle vscode_setup -C)" || exit "$?"
     7 isabelle vscode_setup || exit "$?"
     8 exec "$DIR/bin/codium" \
     8 
       
     9 exec "$ISABELLE_VSCODIUM_HOME/bin/codium" \
     9   --locale en-US \
    10   --locale en-US \
    10   --user-data-dir "$(platform_path "$ISABELLE_VSCODE_SETTINGS"/user-data)" \
    11   --user-data-dir "$(platform_path "$ISABELLE_VSCODE_SETTINGS"/user-data)" \
    11   --extensions-dir "$(platform_path "$ISABELLE_VSCODE_SETTINGS"/extensions)" \
    12   --extensions-dir "$(platform_path "$ISABELLE_VSCODE_SETTINGS"/extensions)" \
    12   "$@"
    13   "$@"