vscode-42-norminette-3-highlighter icon indicating copy to clipboard operation
vscode-42-norminette-3-highlighter copied to clipboard

Norminette in flatpack container of vscode

Open CarloCattano opened this issue 1 year ago • 4 comments

In Berlin the clusters run via flatpack on a container version of vscode , and some funcionalities dont get access:

"....This version is running inside a container and is therefore not ableto access SDKs on your host system!"

So in order to even run our zsh terminal we have to:

 "terminal.integrated.defaultProfile.linux": "bash",
    "terminal.integrated.profiles.linux": {
      "bash": {
        "path": "/usr/bin/flatpak-spawn",
        "args": ["--host", "--env=TERM=xterm-256color", "zsh"]
      }
    },

Im wondering if there is away to bypass this issue in some similar way, since the extension cant find the norminette installed on our computer, similarly how vscode cant find our zsh without this tweaks.

It works perfectly well at home but would love to run it on the clusters

I tried all the workarounds that came to my mind like giving the absolute norminette path /nfs/homes/ccattano/.local/bin/norminette with no avail

https://stackoverflowteams.com/c/42network/questions/2134

CarloCattano avatar Dec 02 '22 19:12 CarloCattano