Sarah

Results 9 comments of Sarah

This pull is broken. When NERDTree closes and reopens after *every* save (this includes simply trying to switch between splits!) vim focuses the cursor back on the NERDTree window, causing...

(Also it has enormous stuttering in general on each save)

Wrote myself a hacky fix since this bugged me on a personal level. If you go into `~/.config/nvim/plugins/vim-devicons/plugin/webdevicons.vim`, (or wherever your plugins are located), head over to line `402-404`, where...

This is infuriating and a serious issue. Happens to random users from time to time and it's the worst. They can continue to troll or cause a problem or do...

There is no serenity in my Cargo.toml. I am using the one that comes in the poise crate. The types are the same. Rust does not have a blanket `impl...

@kangalio See https://doc.rust-lang.org/std/convert/trait.AsRef.html#reflexivity

Here. Poise 0.6.1 and Serenity 0.12.1. [Cargo.lock.txt](https://github.com/serenity-rs/poise/files/14459721/Cargo.lock.txt) The problem is not duplicate dependencies. The types are the same. `AsRef` is NOT implemented for `poise::serenity_prelude::Context`. This is a known quirk of...

I'm not a Rust pro but maybe this should be `impl Into` or `Deref` or `Borrow` instead? Or maybe `impl CacheHttp`.

No! You cannot pass `&serenity::Context` to a parameter of type `impl AsRef` because as per my last comments, `&T` does not implement the trait `AsRef`. You would think it would,...