You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For manual installation, download the JAR file from the [VSCode
714
+
extension](https://github.com/forcedotcom/salesforcedx-vscode/tree/develop/packages/salesforcedx-vscode-apex) and adjust the `apex_jar_path` appropriately.
715
+
716
+
```lua
717
+
vim.lsp.config('apex_ls', {
718
+
apex_jar_path = '/path/to/apex-jorje-lsp.jar',
719
+
apex_enable_semantic_errors = false, -- Whether to allow Apex Language Server to surface semantic errors
720
+
apex_enable_completion_statistics = false, -- Whether to allow Apex Language Server to collect telemetry on code completion usage
For a complete experience, you may need to ensure the treesitter parsers for 'apex' are installed (:TSInstall apex) as well as configure the filetype for apex (*.cls) files:
For manual installation, download the JAR file from the [VSCode
270
+
extension](https://github.com/forcedotcom/salesforcedx-vscode/tree/develop/packages/salesforcedx-vscode-apex) and adjust the `apex_jar_path` appropriately.
271
+
272
+
```lua
273
+
vim.lsp.config('apex_ls', {
274
+
apex_jar_path = '/path/to/apex-jorje-lsp.jar',
275
+
apex_enable_semantic_errors = false, -- Whether to allow Apex Language Server to surface semantic errors
276
+
apex_enable_completion_statistics = false, -- Whether to allow Apex Language Server to collect telemetry on code completion usage
For a complete experience, you may need to ensure the treesitter parsers for 'apex' are installed (:TSInstall apex) as well as configure the filetype for apex (*.cls) files:
0 commit comments