Open
Description
First draft instructions:
- Install the LSP client package for Sublime Text
- Install Djaneiro package -- there may be another way, but as a non-Sublime user this seemed like the easiest way to get an htmldjango filetype
- Add the following settings to the LSP settings
{
"clients": {
"djls": {
"enabled": true,
"command": [
"djls",
"serve"
],
"selector": "text.html.django",
},
},
}
Of course, this is pending #69 -- Sublime uses subprocess
to launch the server, so it won't work currently.