-
When I was using nvim-dap-ui, I got used to bind F4 to open up a REPL float. Is it possible using this plugin to switch to the repl view using a keybind, without having the nvim-dap-view window focused? |
Beta Was this translation helpful? Give feedback.
Answered by
igorlfs
Apr 1, 2025
Replies: 1 comment
-
Hello! With cd8781a, you can add mapping for that: vim.keymap.set("n", "<F4>", function()
require("dap-view").jump_to_view("repl")
end) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
igorlfs
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello!
With cd8781a, you can add mapping for that: