Chris Grieser

Results 394 comments of Chris Grieser

Thanks for the swift response! Well, my discipline is sociology and we regularly cite classic work, often 60 years or older. So no URLs there... 😢 With a higher number...

> That might be true.. though this would make it harder to spot errors for the "ideal" case, and in many cases I think the other methods might be better....

I also noticed that. `IncRename` kinda "blocks" the command history, since the moment you re-select the command, it's most likely invalid, preventing you from going further up in your history....

yep, I think I got it: use `histdel` as a `post_hook` for IncRename. This seems to work for me. ```lua post_hook = function() vim.fn.histdel("cmd", "^IncRename ") end, ```

glad to hear it works, but nonetheless, I'd maybe not close the issue, since this problem should probably be fixed in the plugin?

why wouldn't it be possible? I mean, the plugin would pretty much only have to add the post_hook I just shared?

yeah, that's what I thought as well, however disabling nothing but this plugin fixed the issue, strangely 🤔 So after a bunch of bisecting, I actually found the issue. I...

I am barely familiar with the rewritten codebase by @geoffreysflaminglasersword, but I think you are pretty much right, this appears to be a copypaste mistake regarding the command IDs. >...

thanks! tbh, I do not use the Twitter workspace myself anymore, so I am afraid that I won't be continue developing it anymore 🙁 However, it isn't too hard get...

This is actually not a bug, but somewhat intended. When you only have one tab open and close the tab, you get an empty file, which also triggers this plugin....