zed-industries / extensions

Extensions for the Zed editor
794 stars 329 forks source link

HTML Live Server #1221

Open Jyotibrat opened 1 month ago

Jyotibrat commented 1 month ago

Check for existing issues

Language

HTML

Tree Sitter parser link

https://github.com/tree-sitter/tree-sitter-html

Language server link

https://github.com/Microsoft/vscode/tree/main/extensions/html-language-features/server

Misc notes

There is no Live Server Extension in ZED code editor and I think it is very important code extension for web development. Since, the code editor doesn not have Live Server Extension, I have to go the File explorer(or dolphin on linux) then, open the .html file which in my opinion VS Code gets an edge here as it has Live Server Extension. issue for live server on ZED IDE

d1y commented 4 weeks ago

I also have this need, I am temporarily running it through zed task

[
  {
    "label": "live server daemon",
    "command": "live-server",
    "use_new_terminal": true,
    "allow_concurrent_runs": false,
    "reveal": "always"
  }
]