dioxus icon indicating copy to clipboard operation
dioxus copied to clipboard

Zed Editor Plugin

Open itsezc opened this issue 1 year ago • 2 comments

Feature Request

Zed is a growing editor / IDE where it'd be ideal to have a plugin for Dioxus on it.

Implement Suggestion

Create a Zed plugin.

itsezc avatar Jun 09 '24 07:06 itsezc

yes please.

andreacfromtheapp avatar Apr 17 '25 15:04 andreacfromtheapp

I use these settings to get rsx formatting in zed:

{
  "languages": {
    "Rust": {
      "formatter": [
        { "language_server": { "name": "rust-analyzer" } },
        {
          "external": {
            "command": "dx",
            "arguments": ["fmt", "--file", "-"]
          }
        }
      ]
    }
  }
}

But an actual tree-sitter grammar for rsx would be cool, as it could power language support in lots of editors.

jkbh avatar Jun 12 '25 20:06 jkbh