Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 710 Bytes

editor-st.md

File metadata and controls

31 lines (26 loc) · 710 Bytes

Using serve-d with Sublime Text


Requirments: - LSP Package: https://lsp.sublimetext.io/

Client Configuration:

{
	"clients": {
		"serve-d": {
			"enabled": true,
			"command": ["C:/Users/MY_NAME_HERE/AppData/Roaming/code-d/bin/serve-d.exe"],
			"selector": "source.d",
			"settings": {
				"d.dcdServerPath": "C:/Users/MY_NAME_HERE/AppData/Roaming/code-d/bin/dcd-server.exe",
				"d.dcdClientPath": "C:/Users/MY_NAME_HERE/AppData/Roaming/code-d/bin/dcd-client.exe",

				// optional settings
				"d.servedReleaseChannel": "nightly",
				"d.aggressiveUpdate": false,
				"d.manyProjectsAction": "load",
				"d.enableAutoComplete": true,
				"d.completeNoDupes": true,
			}
		}
	}
}