16 lines
528 B
Plaintext
16 lines
528 B
Plaintext
{
|
|
// The command used to start the Prolog language server. This requires a
|
|
// build of scryer-prolog (https://github.com/mthom/scryer-prolog) whose
|
|
// "--lsp" flag runs a built-in LSP server communicating over stdio.
|
|
// If scryer-prolog is not on your PATH, change this to the absolute path
|
|
// of the binary.
|
|
"enable": true,
|
|
"command": [
|
|
"scryer-prolog",
|
|
"--lsp"
|
|
],
|
|
// Which files this language server should be used for.
|
|
"selector": "source.prolog",
|
|
"settings": {}
|
|
}
|