NotebookNavigator.nvim icon indicating copy to clipboard operation
NotebookNavigator.nvim copied to clipboard

fix: MoltenEvaluateRange end_line number

Open HuntFeng opened this issue 8 months ago • 0 comments

Due to the end_line+1 in line 53 of reple.lua

local ok, _ = pcall(vim.fn.MoltenEvaluateRange, start_line, end_line+1)

MoltenEvaluateRange always include an extra cell marker, see screenshot below image

I don't think this is intended behavior. I remove the +1, and here is the fixed behavior image

HuntFeng avatar Jun 10 '24 17:06 HuntFeng