David Pedersen

Results 20 issues of David Pedersen

### I've searched open issues for similar requests - [X] Yes ### Is your feature request related to a problem? Please describe. As a follow-up to https://github.com/williamboman/mason.nvim/issues/483 which adds the...

enhancement

In a large codebase at work I noticed that people sometimes compare the values of two `len()` with `Equal`, something that `testifylint` v1.4.3 currently doesn't detect. It should suggest using...

enhancement
false-negative

testifylint v1.4.3 correctly suggests using `assert.Len` for the following cases: ``` expected := []string{"a", "b"} assert.Equal(t, len(expected), 2) actual := []string{"a", "b"} assert.Equal(t, 2, len(actual)) expected := 2 actual :=...

enhancement
false-negative

This is a bug that happens to me daily and I can easily replicate it. If I open the app, click a feed and too quickly mark a story as...

## Description There is already logic in RetroArch to automatically pause RetroAchievements hard core mode when loading save states, [see here](https://github.com/libretro/RetroArch/blob/022288a9255f97a92855a6445d336f6ee6611ed7/command.c#L77). However, since there is a warning message before, it's...

Sometimes when I create intelligence classifiers in the iOS app, they don't behave as expected, even afterwards on the desktop website. I recently created a negative filter for Hacker News...

Hello! FBInk looks super interesting and I've been trying to build a simple C program with it for my Kobo Clara 2E. However, I find all the examples to be...

In Go (with gopls), I run the `source.organizeImports` code action on file save to automatically include all missing imports in the file, it would be useful to have the same...

When using ols in Neovim, some errors are not displayed until the file is saved. Normally, with other LSP clients (like gopls/clangd), just leaving insert mode will always display diagnostics....

Some core library packages in Odin are subpackages, this adds an example on how to import those. This would've saved me some time finding out how to do this myself....