Bridging in VScode's plugin ecosystem?

Hey all, a simple question out of curiosity. Given that obsidian and vscode are both built on electron, how hard would it be to bridge over some (or all) of vscode’s plugins to be usable in obsidian?

Cheers

I would say that this is impossible.

Electron is only responsible for creating a desktop application with web technologies.

To put simply:
You give it a few html/javascript/css files and it create a .exe, .dmg, and so on.

Everything else is different.

  • The plugin API
  • The editor layer
  • The representation of data

  • are all completetly different and incompatible to each other.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.