src/Tools/VSCode/src/vscode_setup.scala
author wenzelm
Fri, 18 Feb 2022 18:52:46 +0100
changeset 75099 b5a9315578f8
parent 75092 cdc2838f7536
child 75100 6eff5c260381
permissions -rw-r--r--
clarified options;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
75083
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
     1
/*  Title:      Tools/VSCode/src/vscode_setup.scala
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
     3
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
     4
Setup VSCode from VSCodium distribution.
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
     5
*/
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
     6
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
     7
package isabelle.vscode
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
     8
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
     9
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    10
import isabelle._
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    11
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    12
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    13
object VSCode_Setup
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    14
{
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    15
  /* global resources */
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    16
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    17
  def vscode_home: Path = Path.variable("ISABELLE_VSCODE_HOME")
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    18
  def vscode_settings: Path = Path.variable("ISABELLE_VSCODE_SETTINGS")
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    19
  def vscode_version: String = Isabelle_System.getenv_strict("ISABELLE_VSCODE_VERSION")
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    20
75089
1e230ff31fb0 provide macos_exe, based on bin/codium from linux;
wenzelm
parents: 75088
diff changeset
    21
  def exe_path(dir: Path): Path = dir + Path.explode("bin/codium")
1e230ff31fb0 provide macos_exe, based on bin/codium from linux;
wenzelm
parents: 75088
diff changeset
    22
75083
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    23
  def vscode_installation(version: String, platform: Platform.Family.Value): (Boolean, Path) =
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    24
    {
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    25
      val platform_name =
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    26
        if (platform == Platform.Family.windows) Platform.Family.native(platform)
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    27
        else Platform.Family.standard(platform)
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    28
      val install_dir =
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    29
        vscode_settings + Path.basic("installation") +
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    30
          Path.basic(version) + Path.basic(platform_name)
75089
1e230ff31fb0 provide macos_exe, based on bin/codium from linux;
wenzelm
parents: 75088
diff changeset
    31
      val install_ok = exe_path(install_dir).is_file
75083
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    32
      (install_ok, install_dir)
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    33
    }
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    34
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    35
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    36
  /* vscode setup */
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    37
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    38
  val default_download_url: String = "https://github.com/VSCodium/vscodium/releases/download"
75088
32ebb38154e7 clarified options;
wenzelm
parents: 75083
diff changeset
    39
  def default_platform: Platform.Family.Value = Platform.family
75083
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    40
75089
1e230ff31fb0 provide macos_exe, based on bin/codium from linux;
wenzelm
parents: 75088
diff changeset
    41
  private def macos_exe: String =
1e230ff31fb0 provide macos_exe, based on bin/codium from linux;
wenzelm
parents: 75088
diff changeset
    42
"""#!/usr/bin/env bash
1e230ff31fb0 provide macos_exe, based on bin/codium from linux;
wenzelm
parents: 75088
diff changeset
    43
1e230ff31fb0 provide macos_exe, based on bin/codium from linux;
wenzelm
parents: 75088
diff changeset
    44
unset CDPATH
1e230ff31fb0 provide macos_exe, based on bin/codium from linux;
wenzelm
parents: 75088
diff changeset
    45
VSCODE_PATH="$(cd "$(dirname "$0")"/../VSCodium.app/Contents; pwd)"
1e230ff31fb0 provide macos_exe, based on bin/codium from linux;
wenzelm
parents: 75088
diff changeset
    46
1e230ff31fb0 provide macos_exe, based on bin/codium from linux;
wenzelm
parents: 75088
diff changeset
    47
ELECTRON="$VSCODE_PATH/MacOS/Electron"
1e230ff31fb0 provide macos_exe, based on bin/codium from linux;
wenzelm
parents: 75088
diff changeset
    48
CLI="$VSCODE_PATH/Resources/app/out/cli.js"
1e230ff31fb0 provide macos_exe, based on bin/codium from linux;
wenzelm
parents: 75088
diff changeset
    49
ELECTRON_RUN_AS_NODE=1 "$ELECTRON" "$CLI" --ms-enable-electron-run-as-node "$@"
1e230ff31fb0 provide macos_exe, based on bin/codium from linux;
wenzelm
parents: 75088
diff changeset
    50
exit $?
1e230ff31fb0 provide macos_exe, based on bin/codium from linux;
wenzelm
parents: 75088
diff changeset
    51
"""
1e230ff31fb0 provide macos_exe, based on bin/codium from linux;
wenzelm
parents: 75088
diff changeset
    52
75083
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    53
  def download_name(version: String, platform: Platform.Family.Value): String =
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    54
  {
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    55
    val a = "VSCodium"
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    56
    val (b, c) =
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    57
      platform match {
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    58
        case Platform.Family.linux_arm => ("linux-arm64", "tar.gz")
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    59
        case Platform.Family.linux => ("linux-x64", "tar.gz")
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    60
        case Platform.Family.macos => ("darwin-x64", "zip")
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    61
        case Platform.Family.windows => ("win32-x64", "zip")
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    62
      }
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    63
    a + "-" + b + "-" + version + "." + c
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    64
  }
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    65
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    66
  def vscode_setup(
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    67
    check: Boolean = false,
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    68
    download_url: String = default_download_url,
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    69
    version: String = vscode_version,
75088
32ebb38154e7 clarified options;
wenzelm
parents: 75083
diff changeset
    70
    platform: Platform.Family.Value = default_platform,
75099
b5a9315578f8 clarified options;
wenzelm
parents: 75092
diff changeset
    71
    quiet: Boolean = false,
75083
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    72
    progress: Progress = new Progress): Unit =
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    73
  {
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    74
    val (install_ok, install_dir) = vscode_installation(version, platform)
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    75
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    76
    if (check) {
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    77
      if (install_ok) progress.echo(install_dir.expand.implode)
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    78
      else {
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    79
        error("Bad Isabelle/VSCode installation: " + install_dir.expand +
75092
cdc2838f7536 tuned message;
wenzelm
parents: 75089
diff changeset
    80
          "\n(use \"isabelle vscode_setup\" for download and installation)")
75083
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    81
      }
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    82
    }
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    83
    else {
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    84
      if (install_ok) {
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    85
        progress.echo_warning("Isabelle/VSCode installation already present: " + install_dir.expand)
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    86
      }
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    87
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    88
      val name = download_name(version, platform)
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    89
      val is_zip = name.endsWith(".zip")
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    90
      if (is_zip) Isabelle_System.require_command("unzip", test = "-h")
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    91
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    92
      Isabelle_System.make_directory(install_dir)
75089
1e230ff31fb0 provide macos_exe, based on bin/codium from linux;
wenzelm
parents: 75088
diff changeset
    93
      val exe = exe_path(install_dir)
1e230ff31fb0 provide macos_exe, based on bin/codium from linux;
wenzelm
parents: 75088
diff changeset
    94
75083
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    95
      Isabelle_System.with_tmp_file("download")(download =>
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    96
        {
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
    97
          Isabelle_System.download_file(download_url + "/" + version + "/" + name, download,
75099
b5a9315578f8 clarified options;
wenzelm
parents: 75092
diff changeset
    98
            progress = if (quiet) new Progress else progress)
b5a9315578f8 clarified options;
wenzelm
parents: 75092
diff changeset
    99
          if (!quiet) progress.echo("Installing " + install_dir.expand)
75083
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   100
          if (is_zip) {
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   101
            Isabelle_System.bash("unzip -x " + File.bash_path(download),
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   102
              cwd = install_dir.file).check
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   103
          }
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   104
          else {
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   105
            Isabelle_System.gnutar("-xzf " + File.bash_path(download),
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   106
              dir = install_dir).check
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   107
          }
75089
1e230ff31fb0 provide macos_exe, based on bin/codium from linux;
wenzelm
parents: 75088
diff changeset
   108
          platform match {
1e230ff31fb0 provide macos_exe, based on bin/codium from linux;
wenzelm
parents: 75088
diff changeset
   109
            case Platform.Family.macos =>
1e230ff31fb0 provide macos_exe, based on bin/codium from linux;
wenzelm
parents: 75088
diff changeset
   110
              Isabelle_System.make_directory(exe.dir)
1e230ff31fb0 provide macos_exe, based on bin/codium from linux;
wenzelm
parents: 75088
diff changeset
   111
              File.write(exe, macos_exe)
1e230ff31fb0 provide macos_exe, based on bin/codium from linux;
wenzelm
parents: 75088
diff changeset
   112
              File.set_executable(exe, true)
1e230ff31fb0 provide macos_exe, based on bin/codium from linux;
wenzelm
parents: 75088
diff changeset
   113
            case Platform.Family.windows =>
1e230ff31fb0 provide macos_exe, based on bin/codium from linux;
wenzelm
parents: 75088
diff changeset
   114
              val files1 = File.find_files(exe.dir.file)
1e230ff31fb0 provide macos_exe, based on bin/codium from linux;
wenzelm
parents: 75088
diff changeset
   115
              val files2 =
1e230ff31fb0 provide macos_exe, based on bin/codium from linux;
wenzelm
parents: 75088
diff changeset
   116
                File.find_files(install_dir.file,
1e230ff31fb0 provide macos_exe, based on bin/codium from linux;
wenzelm
parents: 75088
diff changeset
   117
                  pred = file => file.getName.endsWith(".exe") || file.getName.endsWith(".dll"))
1e230ff31fb0 provide macos_exe, based on bin/codium from linux;
wenzelm
parents: 75088
diff changeset
   118
              for (file <- files1 ::: files2) File.set_executable(File.path(file), true)
1e230ff31fb0 provide macos_exe, based on bin/codium from linux;
wenzelm
parents: 75088
diff changeset
   119
            case _ =>
75083
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   120
          }
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   121
        })
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   122
    }
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   123
  }
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   124
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   125
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   126
  /* Isabelle tool wrapper */
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   127
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   128
  val isabelle_tool =
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   129
    Isabelle_Tool("vscode_setup", "setup VSCode from VSCodium distribution",
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   130
      Scala_Project.here, args =>
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   131
    {
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   132
      var check = false
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   133
      var download_url = default_download_url
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   134
      var version = vscode_version
75088
32ebb38154e7 clarified options;
wenzelm
parents: 75083
diff changeset
   135
      var platforms = List(default_platform)
75099
b5a9315578f8 clarified options;
wenzelm
parents: 75092
diff changeset
   136
      var quiet = false
75083
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   137
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   138
      val getopts = Getopts("""
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   139
Usage: vscode_setup [OPTIONS]
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   140
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   141
  Options are:
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   142
    -C           check and print installation directory
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   143
    -U URL       download URL
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   144
                 (default: """" + default_download_url + """")
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   145
    -V VERSION   version (default: """" + vscode_version + """")
75088
32ebb38154e7 clarified options;
wenzelm
parents: 75083
diff changeset
   146
    -p NAMES     platform families: comma-separated names
32ebb38154e7 clarified options;
wenzelm
parents: 75083
diff changeset
   147
                 (""" + commas_quote(Platform.Family.list.map(_.toString)) + """, default: """ +
32ebb38154e7 clarified options;
wenzelm
parents: 75083
diff changeset
   148
        quote(default_platform.toString) + """)
75099
b5a9315578f8 clarified options;
wenzelm
parents: 75092
diff changeset
   149
    -q           quiet mode
75083
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   150
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   151
  Maintain local installation of VSCode, see also https://vscodium.com
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   152
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   153
  Option -C checks the existing installation (without download), and
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   154
  prints its directory location.
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   155
""",
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   156
        "C" -> (_ => check = true),
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   157
        "U:" -> (arg => download_url = arg),
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   158
        "V:" -> (arg => version = arg),
75088
32ebb38154e7 clarified options;
wenzelm
parents: 75083
diff changeset
   159
        "p:" -> (arg => platforms = Library.space_explode(',', arg).map(Platform.Family.parse)),
75099
b5a9315578f8 clarified options;
wenzelm
parents: 75092
diff changeset
   160
        "q" -> (_ => quiet = true))
75083
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   161
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   162
      val more_args = getopts(args)
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   163
      if (more_args.nonEmpty) getopts.usage()
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   164
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   165
      val progress = new Console_Progress()
75088
32ebb38154e7 clarified options;
wenzelm
parents: 75083
diff changeset
   166
      for (platform <- platforms) {
32ebb38154e7 clarified options;
wenzelm
parents: 75083
diff changeset
   167
        vscode_setup(check = check, download_url = download_url, version = version,
75099
b5a9315578f8 clarified options;
wenzelm
parents: 75092
diff changeset
   168
          platform = platform, quiet = quiet, progress = progress)
75088
32ebb38154e7 clarified options;
wenzelm
parents: 75083
diff changeset
   169
      }
75083
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   170
    })
35a5c4b16024 setup VSCode from VSCodium distribution;
wenzelm
parents:
diff changeset
   171
}