garaemon / vscode-emacs-tab

BSD 3-Clause "New" or "Revised" License
14 stars 11 forks source link

Consider tagging the "extensionKind" as "ui" in package.json #33

Open b-spencer opened 6 months ago

b-spencer commented 6 months ago

In my experience, tagging this extension as a "ui" extension solves issues when using remotes. I've been running it for months with a local settings.json override with no issues (not even the one in #28 when running a stock copy of this extension).

From my personal settings.json:

"remote.extensionKind": {
  "garaemon.vscode-emacs-tab": [ "ui" ],
}

I think just adding the following to package.json achieves the same effect:

"extensionKind": [
  "ui"
],

but I am not 100% certain.