Skip to content

Commit fbb1ba3

Browse files
docs: update configs.md
skip-checks: true
1 parent faa3460 commit fbb1ba3

File tree

2 files changed

+36
-12
lines changed

2 files changed

+36
-12
lines changed

doc/configs.md

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7691,17 +7691,29 @@ Default config:
76917691

76927692
[Language server](https://github.com/vscode-abl/vscode-abl) for Progress OpenEdge ABL.
76937693

7694-
For manual installation, download abl-lsp.jar from the [VSCode
7695-
extension](https://github.com/vscode-abl/vscode-abl/releases/latest).
7694+
For manual installation, download abl-lsda.jar from the [VSCode extension](https://github.com/vscode-abl/vscode-abl/releases/latest).
76967695

76977696
Configuration
76987697

76997698
```lua
7700-
require('lspconfig').['openedge_ls'].setup {
7701-
oe_jar_path = '/path/to/abl-lsp.jar',
7702-
dlc = '12.2:/path/to/dlc-12.2', -- Version number and OpenEdge root directory (colon separator)
7699+
require('lspconfig').openedge_ls.setup {
7700+
oe_jar_path = '/path/to/abl-lsda.jar',
77037701
debug = false, -- Set to true for debug logging
7704-
trace = false -- Set to true for trace logging (REALLY verbose)
7702+
trace = false, -- Set to true for trace logging (REALLY verbose)
7703+
init_options = {
7704+
abl = {
7705+
configuration = {
7706+
runtimes = {
7707+
{ name = '12.8', path = '/opt/progress/dlc' }
7708+
},
7709+
maxThreads = 1
7710+
},
7711+
completion = {
7712+
upperCase = false
7713+
},
7714+
buildMode = 1 -- Build all
7715+
}
7716+
}
77057717
}
77067718
```
77077719

doc/configs.txt

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7128,17 +7128,29 @@ openedge_ls
71287128

71297129
[Language server](https://github.com/vscode-abl/vscode-abl) for Progress OpenEdge ABL.
71307130

7131-
For manual installation, download abl-lsp.jar from the [VSCode
7132-
extension](https://github.com/vscode-abl/vscode-abl/releases/latest).
7131+
For manual installation, download abl-lsda.jar from the [VSCode extension](https://github.com/vscode-abl/vscode-abl/releases/latest).
71337132

71347133
Configuration
71357134

71367135
```lua
7137-
require('lspconfig').['openedge_ls'].setup {
7138-
oe_jar_path = '/path/to/abl-lsp.jar',
7139-
dlc = '12.2:/path/to/dlc-12.2', -- Version number and OpenEdge root directory (colon separator)
7136+
require('lspconfig').openedge_ls.setup {
7137+
oe_jar_path = '/path/to/abl-lsda.jar',
71407138
debug = false, -- Set to true for debug logging
7141-
trace = false -- Set to true for trace logging (REALLY verbose)
7139+
trace = false, -- Set to true for trace logging (REALLY verbose)
7140+
init_options = {
7141+
abl = {
7142+
configuration = {
7143+
runtimes = {
7144+
{ name = '12.8', path = '/opt/progress/dlc' }
7145+
},
7146+
maxThreads = 1
7147+
},
7148+
completion = {
7149+
upperCase = false
7150+
},
7151+
buildMode = 1 -- Build all
7152+
}
7153+
}
71427154
}
71437155
```
71447156

0 commit comments

Comments
 (0)