Imbolc

Results 51 issues of Imbolc

I'm not sure how db works, but at first glance, `AddressNotFoundError` seems to relate to a request issue, while other variants to configuration. Or I'm wrong and it only reacts...

I was surprised by absence of the `Builder::open_or_create` method. But then I looked at [redb::Builder::create](https://docs.rs/redb/latest/redb/struct.Builder.html#method.create) to which `native_db::Builder::create` is meant to be similar, and it actually is an "open or...

long-term

Implemented @jonahlund [suggestions](https://github.com/jonahlund/vy/issues/3) for Maud ```rust maud::html! { (maud::script!{ console.log("Hello,"); console.log("world!"); }) } ```

context aware escaping

**Is your feature request related to a problem? Please describe.** Mapping `TelescopeSelection` to `Visual` makes the text unreadable in the [pappasam/papercolor-theme-slim](https://github.com/pappasam/papercolor-theme-slim/issues/10#issuecomment-2706602161) theme. https://github.com/nvim-telescope/telescope.nvim/blob/814f102cd1da3dc78c7d2f20f2ef3ed3cdf0e6e4/plugin/telescope.lua#L13 **Describe the solution you'd like** Would you...

enhancement

## Long story short I use `127.0.0.1` instead of `localhost` for development and wasted few hours before understand why my tests breaks :) ``` import asyncio import aiohttp async def...

enhancement
need pull request

```sql SELECT * FROM foo WHERE AND bar IS DISTINCT FROM 1; ``` Expected ```sql SELECT * FROM foo WHERE AND bar IS DISTINCT FROM 1; ```

```sql CREATE teMP TABLE foo (); ``` Expected ```sql CREATE TEMP TABLE foo (); ```

```sql SELECT * FROM foo FOR UPDATE ; ``` Should be ```sql FROM foo FOR UPDATE ```

```sql SELECT type FROM foo WHERE type = 1; ``` formatted as ```sql SELECT TYPE FROM foo WHERE TYPE = 1; ```

I've tried leptosfmt with adding `rsx` to the config or just importing it as `view` and it doens't seem to work.

enhancement