@@ -299,18 +299,16 @@ rustaceanvim.lsp.ClientOpts *rustaceanvim.lsp.ClientOpts*
299
299
{load_vscode_settings?} (boolean)
300
300
Whether to search (upward from the buffer) for rust-analyzer settings in .vscode/settings json.
301
301
If found, loaded settings will override configured options.
302
- Default: true
303
-
304
- See: ~
305
- | vim.lsp.ClientConfig |
302
+ Default: ` true`
303
+ {status_notify_level?} (rustaceanvim.server.status_notify_level)
304
+ Server status warning level to notify at.
305
+ Default: 'error'
306
306
307
307
308
- rustaceanvim.dap.Opts *rustaceanvim.dap.Opts *
308
+ rustaceanvim.server.status_notify_level *rustaceanvim.server.status_notify_level *
309
309
310
- Fields: ~
311
- {autoload_configurations} (boolean)
312
- Whether to autoload nvim-dap configurations when rust-analyzer has attached?
313
- Default: `true` .
310
+ Type: ~
311
+ "error"|"warning"|rustaceanvim.disable
314
312
315
313
316
314
rustaceanvim.disable *rustaceanvim.disable*
@@ -319,6 +317,30 @@ rustaceanvim.disable *rustaceanvim.disable*
319
317
false
320
318
321
319
320
+ rustaceanvim.dap.Opts *rustaceanvim.dap.Opts*
321
+
322
+ Fields: ~
323
+ {autoload_configurations?} (boolean)
324
+ Whether to autoload nvim-dap configurations when rust-analyzer has attached?
325
+ Default: `true`
326
+ {adapter?} (rustaceanvim.dap.executable.Config| rustaceanvim.dap.server.Config | rustaceanvim.disable| fun():rustaceanvim.dap.executable.Config | rustaceanvim.dap.server.Config|rustaceanvim.disable)
327
+ Defaults to creating the `rt_lldb` adapter, which is a | rustaceanvim.dap.server.Config |
328
+ if `codelldb` is detected, and a | rustaceanvim.dap.executable.Config | ` if `lldb` is detected.
329
+ Set to `false` to disable.
330
+ {configuration?} (rustaceanvim.dap.client.Config| rustaceanvim.disable | fun():rustaceanvim.dap.client.Config|rustaceanvim.disable)
331
+ Dap client configuration. Defaults to a function that looks for a `launch.json` file
332
+ or returns a | rustaceanvim.dap.executable.Config | that launches the `rt_lldb` adapter.
333
+ Set to `false` to disable.
334
+ {add_dynamic_library_paths?} (boolean|fun():boolean)
335
+ Accommodate dynamically-linked targets by passing library paths to lldb.
336
+ Default: `true` .
337
+ {auto_generate_source_map?} (fun():boolean|boolean)
338
+ Whether to auto-generate a source map for the standard library.
339
+ {load_rust_types?} (fun():boolean|boolean)
340
+ Whether to get Rust types via initCommands (rustlib/etc/lldb_commands, lldb only).
341
+ Default: `true` .
342
+
343
+
322
344
rustaceanvim.dap.Command *rustaceanvim.dap.Command*
323
345
324
346
Type: ~
0 commit comments