Gabriel Hansson

Results 63 issues of Gabriel Hansson

Pull request an attempt to collect a multitude of unresolved and conflicting pull requests into logical commits for one hassle-free merge. Namely: ### #6924 by aelfsyg * set active opacity...

Commit messages explain most of it. Proceeds: https://github.com/helix-editor/helix/pull/3053 | Before | After | |---|---| | ![image](https://user-images.githubusercontent.com/31696304/212953766-df2148b2-d89f-4305-95fc-c2e73e1cd697.png)| ![image](https://user-images.githubusercontent.com/31696304/212953970-41a60912-226d-438d-81f4-67dcc2502c6e.png)| | ![2023-01-17-170540_screenshot](https://user-images.githubusercontent.com/31696304/212951700-9244a3a9-fd5f-48a8-8bd6-f7cc596a448e.png) | ![2023-01-17-170522_screenshot](https://user-images.githubusercontent.com/31696304/212953441-89b1211d-b33e-4069-a1b7-48100157d5ab.png) | Command palette: Should I change the ">" character...

A-helix-term
S-waiting-on-pr

I'm interested in replacing `url::Url` with `uriparse-rs::URI` in the `lsp-types` crate. https://github.com/gluon-lang/lsp-types/issues/261#issuecomment-1750367878. But that would require `URI` to implement `PartialOrd` and `Ord`. `Url` does this by simply comparing the stringified...

Comparison is part of the spec: https://datatracker.ietf.org/doc/html/rfc3986#section-6.2.

I'm currently not interested in i18n support, and I'm writing an application where that binary size should be kept as small as possible. Took a quick look at the crates.io...

Mostly a feature request that I'm interested in hearing your take on. It's quite common for me to have failed unit tests that check `assert_eq!` on structs with geometries, simply...

Wasn't sure if the example/is_tty should remain, simply adapted it for now.

This PR is similar to https://github.com/meilisearch/meilisearch-rust/pull/426 and https://github.com/meilisearch/meilisearch-rust/pull/459, and an alternative solution to https://github.com/meilisearch/meilisearch-rust/issues/452. It adds the ability to switch to a `reqwest` backend by using either the `reqwest-native-tls` or...

## Source ```rust // lib.rs #![allow(dead_code)] use meilisearch_sdk::{indexes::Index, Client}; use serde::Serialize; #[derive(Serialize)] struct SimpleStruct 0) // failed } fn index(namespace: &str) -> Index { Client::new( "http://127.0.0.1:7700", Some("xxx"), ) .index(namespace) }...

bug