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
You can also interact with the console provided by `nvim-dap` (though, arguably, that's not a feature from `nvim-dap-view`). The console has its own window. However, its default size (height) is resized to match you`nvim-dap-view` configuration.
98
+
You can also interact with the console provided by `nvim-dap` (though, arguably, that's not a feature from `nvim-dap-view`). The console has its own window. However, its default size (height) is resized to match your`nvim-dap-view` configuration. You can also completely [hide](#hide-terminal) it, if it's not being used.
Some debug adapters don't use the integrated terminal (console). To avoid having a useless window lying around, you can completely hide the terminal for them. To achieve that, add the following snippet to your `nvim-dap-view` setup:
181
+
182
+
```lua
183
+
-- Goes into your opts table (if using lazy.nvim), otherwise goes into the setup function
184
+
-- No need to include the "return" statement (or the outer curly braces)
185
+
return {
186
+
windows= {
187
+
terminal= {
188
+
-- NOTE Don't copy paste this snippet
189
+
-- Use the actual names for the adapters you want to hide
0 commit comments