Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lua/dap/repl.lua
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,7 @@ local function select_history(delta)
if text then
local lnum = vim.fn.line('$') - 1
api.nvim_buf_set_lines(repl.buf, lnum, lnum + 1, true, {'dap> ' .. text })
vim.fn.setcursorcharpos({ vim.fn.line('$'), vim.fn.col('$') }) -- move cursor to the end of line
end
end

Expand Down