Joshua T Corbin
Joshua T Corbin
Hey there, you might be thinking of https://github.com/abhinav/restack that @abhinav made to assist with that, my solution is a bit more lightweight, and isn't a standalone tool: - a couple...
yes, I am bad webmaster ; should move to github pages, thanks for the reminder!
Here's where I'm at currently: ```lua vim.api.nvim_create_user_command('DiffviewSplit', function() local bufname = vim.api.nvim_buf_get_name(0) vim.cmd.split('diffview://' .. bufname) -- NOTE this doesn't work, since diffview want a url more like -- 'diffview://' .....
Responded to a few of @jwolski's comments, don't merge yet, I'll revamp all the commits here in a bit, but wanted to get a few changes out for convo's sake...
Dialed the scope back for now
The original design intent was to default to dropping items; silently at first / by default, but with an optional affordance for watchers that want to know when/if/how-many drops are...
A contrived example to reproduce a pain point I hit in real code @Raynos @malandrew
fwiw in my real code, it was a: function > for > if > if / else if / else if / ..., so I was trying to put an...