Naser Aleisa
Naser Aleisa
After updating npm/cargo deps to the latest versions, `stdout` and `stderr` are no longer included in the `child` object. Versions included below, but the relevant ones are: ``` - (npm)...
Because neovim does not [yet](https://github.com/neovim/neovim/issues/17044) have a native multi-select, we rely on [this](https://github.com/thenbe/neotest-playwright/blob/ea972015695704846ffaeffb364a898c6f2be847/src/select-multiple.ts?plain=1#L35-L63) loop instead. Our workaround behaves as intended, unless a wrapper around `vim.ui.select` (such as [dressing.nvim](https://github.com/stevearc/dressing.nvim)) is used....
Doing so will override the reporters set in `playwright.config.ts`. - [x] Document - [ ] warn if not set by user (`:checkhealth`?)
Raindrop [allows](https://help.raindrop.io/backups/#downloading-a-backup) users to export a single CSV file containing all items, but only through the GUI. There is no _documented_ way to do the same through the Raindrop API....
fixes #217 Before this PR, we never invoke the user's custom `at_edge` behavior for floating windows (see minimal repro). Instead, we return early. This PR ensures that, for floating windows,...
### Steps to Reproduce `opts.at_edge` is not called when `float_win_behavior = 'mux'` ## Minimal Reproduction ```lua { float_win_behavior = 'mux', at_edge = function(context) print('foo') end, } ``` 1. Use the...
### What is the feature you are proposing? I'm using zod validator, just like the technique described [here](https://hono.dev/docs/concepts/stacks#validation-with-zod). Is there a way I can generate an openapi schema from this...
I was trying to add a single package from nur to a devshell, but it wasn't immediately clear to me how to do so. This PR demostrates adds a simple...
When I attempt to enable the postgis extension, as per the [docs](https://supabase.com/docs/guides/database/extensions/postgis?queryGroups=database-method&database-method=sql&queryGroups=language&language=js#enable-the-extension), I get the following error: ```sql CREATE EXTENSION postgis WITH SCHEMA extensions; -- ERROR: permission denied to create...