Results 26 issues of oxalica

### Feature already in Vim? No ### Feature description [The inlay hint feature](https://github.com/microsoft/language-server-protocol/issues/956) is stabilized in latest [LSP Spec 3.17](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/), and implemented in VSCode. The latest stable version of rust-analyzer...

enhancement
lsp

I'm on current nixpkgs master. Command: `nix-prefetch cargo-flamegraph.cargoDeps --fetcher '' ` Outputs: ``` warning: unknown setting 'experimental-features' warning: unknown setting 'flake-registry' warning: unknown setting 'experimental-features' warning: unknown setting 'flake-registry' error:...

Consider we implemented a double-linked-list with GhostCell, and it's type definition would contains `'brand`, and almost all it's method would take a `GhostToken` argument. Then if we want to expose...

For C-like languages, there is no builtin `elseif` keyword, "else-if" is written as nested "if". Consider no-brace style "if-else" chain: ```c int main() { if (1) foo(); else if (1)...

Close #326 I define the option to accept only the session file name rather than a absolute path, because this configuration is usually written by human, there's no reason to...

I'm not sure if it is possible. But currently we cannot simply store an async `Mutex` in `Pool`. Since the lifetime of `PoolGuard` will cross `await`. Example: ```rust use async_std::{sync::Mutex,...

enhancement

Consider the program calculating `sum (map head (tails list))`. Due to the laziness, though the normal form of `tails list` has `O(n^2)` elements, I'm expecting the whole expression to cost...

discussion

I have only one DP display output (2560x1440), and have global scaling enabled (`-dpi 120` in X argument). When I close the monitor and re-open it, font size of alacritty...

B - bug
S - winit/glutin
A - deps

I hit the GitHub rate limit and try to set `NVCHECKER_GITHUB_TOKEN`, but it seems not passed to the underlying `nvchecker` invocation. I still got a rate limited error. `NVCHECKER_GITHUB_TOKEN=ghp_mysurelyworkingtoken nvfetcher`...

I'm using `src.prefix` to strip [tags like `v1.6.10`](https://github.com/jirutka/swaylock-effects/releases/tag/v1.6.10) to get version number `1.6.10`. ```toml [swaylock-effects] src.github_tag = "jirutka/swaylock-effects" src.prefix = "v" fetch.github = "jirutka/swaylock-effects" ``` But it actually strip both...