Mitchell Dalvi Rosen
Mitchell Dalvi Rosen
Ok, I think I've made the requested changes
@ggandor Ah sorry, I had missed that. Ok, after reading the code, and the issue that lead to some of it (https://github.com/folke/noice.nvim/issues/114), I'm left feeling like I just don't really...
For anyone looking to apply the workaround suggested by @folke above, you can hook into `LeapEnter` and `LeapLeave` like so: #### lua ```lua vim.api.nvim_create_autocmd( "User", { callback = function() vim.cmd.hi("Cursor",...
I think that's still the case
Has this been fixed? I see this printed as ```unison foo : a ->{May, February, October, June, January, November, March, December, April, September, July, August} a -> () foo a...
Ok, here's how `pool.wrap` prints ``` pool.wrap : (a ->{Config, Exception, State, Http, Services, Remote, websockets.HttpWebSocket, WebSockets, Random, Log, Scratch} b) -> a ->{Remote} b pool.wrap f a = await...
Oh boy, this makes no sense to me. If you comment out the line it's complaining about... ``` pool.wrap : (a ->{Config, Exception, State, Http, Services, Remote, websockets.HttpWebSocket, WebSockets, Random,...
I can't really minimize it in a way that makes it clear what's going on. You can certainly get the error to appear and disappear just by playing around. The...
In this code ``` pool.wrap : (a ->{Config, Remote, Log, Scratch} b) -> a ->{Remote} b pool.wrap f a = await (Remote.fork !pool do randomly do f a) ``` there...
``` (a ->{Config, Random, Scratch} b) ``` lexes incorrectly (erroneous `Semi True`) yet both of these lex correctly Variant 1: space after `Random` ``` (a ->{Config, Random , Scratch} b)...