Gimly/vscode-matlab

Missing highlighting and grammar submodule in `3.0.0` sources

zm-cttae opened this issue · 6 comments

The publish missed the git submodule for the grammar @Gimly

Need to git submodule update --init and republish as 3.0.1 

(Hope the meeting with Mathworks went well!)

Temporary user fix:

  • Shell or PWSH: cd ~/.vscode/extensions/gimly81.matlab-3.0.0 && git init && git remote add origin https://github.com/Gimly/vscode-matlab.git && git submodule update --init
  • Powershell: cd ~/.vscode/extensions/gimly81.matlab-3.0.0; git init; git remote add origin https://github.com/Gimly/vscode-matlab.git; git submodule update --init
Gimly commented

Published 3.0.1, should be OK now.

Gimly commented

@zm-cttae Yes, the meeting with Mathworks went well, there will be news quickly about the future of the extension.

Confirmed it's fixed in 3.0.1

We can fix the regression by adding NPM script:

"postinstall": "git submodule update --init"

(Gentle nudge to make release tags for e609168 - 3.0.0 - and 38ed7dc - 3.0.1!)