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
`r.lsp.server_capabilities` | `{}` | override server capabilities defined in [capabilities.R](https://github.com/REditorSupport/languageserver/blob/master/R/capabilities.R). See FAQ below.
124
124
`r.lsp.link_file_size_limit` | 16384 | maximum file size (in bytes) that supports document links
125
125
126
-
These settings could also specified in `.Rprofile` file via `options(languageserver.<SETTING_NAME> = <VALUE>)`. For example,
126
+
These settings could also specified in `.Rprofile` file via `options(languageserver.<SETTING_NAME> = <VALUE>)`. For example,
127
127
128
128
```r
129
129
options(languageserver.snippet_support = FALSE)
130
130
```
131
-
will turn off snippet support globally. LSP configuration settings are always overriden by `options()`.
132
131
132
+
will turn off snippet support globally. LSP configuration settings are always overriden by `options()`.
133
133
134
134
## FAQ
135
135
@@ -144,6 +144,7 @@ Server capabilities are defined in
144
144
Users could override the capabilities by specifying the LSP configuration setting
145
145
`server_capabilities` or
146
146
`options(languageserver.server_capabilities)` in `.Rprofile`. For example, to turn off `definitionProvider`, one could either use LSP configuration
147
+
147
148
```json
148
149
"r": {
149
150
"lsp": {
@@ -153,7 +154,9 @@ Users could override the capabilities by specifying the LSP configuration settin
0 commit comments