[SOLVED] - vscodium tidalcycles plugin

Hi,

I switched to VSCodium, the VSCode withouth microsoft telemetry etc. I tried installing Tidalcycles and it is simply not available in the marketplace for codium. nn
It is fairly simple however to package the github package for the VScode plugin, and install it in Codium. I tested it, and it works.

If you want to do this, you'll need npm/nodejs

  1. download the vscode tidalcycles extension source code (either git clone, or download zip, which you'll need to unzip)
  2. install npm if not installed ( curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
  3. nvm install 24 (or whatever version seems ok nvm ls-remote)
  4. cd into the directory, run npm install
  5. install vsce npm install -g @vscode/vsce The VScode exsention packaging tools
  6. run vsce package in the tidalcycles extension directory
  7. run codium --install-extension vscode-tidalcycles-1.4.0.vsix or whatever file vsce created

Done!

1 Like