Net

Results 18 comments of Net

I support both these changes, especially swapping space and ,. Having made that last change myself, this wouldn't affect me personally, but I think these are much better defaults for...

Has anyone found a good way to edit car files on macOS Sonoma?

> https://github.com/rustwasm/wasm-pack/blob/master/src/build/mod.rs#L103-L105 it looks like they don't specify a profile if you run wasm-pack with --dev Unfortunately, that will also cause wasm-pack to use the debug target directory. https://github.com/rustwasm/wasm-pack/blob/master/src/bindgen.rs#L26-L29

@curioussavage did you ever figure it out?

This can also be done using `undefined` in `and()` and `or()` calls, as `undefined` is removed by Drizzle when compiling the query: ```js db .select() .from(users) .where( and( subscribedOnly ?...

I would **love** this in Neovim ❤️

Only visual-regexp-steroids.el starts Python, correct? Should these hooks be added when vr is entered and removed when it is ended? https://github.com/benma/visual-regexp.el/blob/b3096c2d391ff4e28a2a4e8cd82efbf11071ea85/visual-regexp.el#L455 https://github.com/benma/visual-regexp.el/blob/b3096c2d391ff4e28a2a4e8cd82efbf11071ea85/visual-regexp.el#L463

Remapping just ' works, swapping ' and \` is when things seem to break. ```lua vim.api.nvim_set_keymap('n', "'", 'lua require("which-key").show("`", { mode = "n" })', { silent = true }) ```