Julian Grinblat

Results 120 comments of Julian Grinblat

I am thinking to add a new `async` option, besides `skipBinary`. When true, the replacement function will return a promise. Since neither `String.prototype.replace` nor `replacestream` support a replacement function that...

The other option would be to export a separate, `async` version of the plugin

Yeah my CI finally failed yesterday... hopefully we can get a patch from @AshanFernando over the weekend or we'll have to `patch-package` this...

Yeah, but since this will basically break anyone using this package it might get enough people to chime in that it actually gets fixed haha It's undermaintained but it did...

The only way to do this would be to separate the default maps from the `setup` function, or extend the setup function to allow for customizations, or some other approach....

I am having this issue with scala and metals. Whenever I use `SelectBehavior.Insert` and the selected item is an operator (for example, a class that overrides `-` or `==`), the...

In my case, the problem turned out to be an incompatibility with `vim-matchup`. It was solved via the following snippet: ``` cmp.event:on("menu_opened", function() vim.b.matchup_matchparen_enabled = false end) cmp.event:on("menu_closed", function() vim.b.matchup_matchparen_enabled...

I know it is very bad manners to plug your own plugin as a solution to a problem, but some time ago I put together [`chai-superagent`](https://www.npmjs.com/package/chai-superagent) precisely to avoid the...

sounds like `dbus` is not setup correctly? in my system I run ``` if [[ -z "$DBUS_SESSION_BUS_ADDRESS" ]]; then export $(dbus-launch --exit-with-x11) fi ``` inside `.xprofile` (which I run from...