Andreas Källberg
Andreas Källberg
It seems like the gif-file is reloaded and re-downloaded on every single frame, so we can only ever see the first frame in the gif. The network tab in chrome...
Here is a nix-file for installing hylogen with nix that worked for me: Save as `hylogen.nix`, run (without installing) with `nix run -f hylogen.nix -c hylide Example.hs`, install with `nix-env...
I am working with a project that creates a large immutable long-living structure that unfortunately contains a bunch of `Data.ByteString`s. I was hoping to be able to easily reduce GC...
The behavior and usage of a terminating `ApolloLink` and the non-terminating variant is fundamentally different and there is no reason that they should be the same type. - You can...
Here's an example of the corresponding function for nixos' command-not-found program. https://github.com/beatgammit/fish-shell/blob/793784c08778e8b3fb9d8a2a5621bd968db1dfbe/share/functions/__fish_config_interactive.fish#L229-L231 ``` function __fish_command_not_found_handler --on-event fish_command_not_found /path/to/command-not-found $argv end ``` I'm not entirely sure where the function should be...
This is especially important when writing patches for HLS itself, since I would want to use a stable version for developing and my unstable version for testing. It was possible...
**Is your feature request related to a problem? Please describe.** When code uses a lot of type classes, it would be useful to go to the definition of the actual...
By parsing one character at a time with [`Data.Char.readLitChar`](http://hackage.haskell.org/package/base-4.12.0.0/docs/Data-Char.html#v:readLitChar), we can avoid the need to read the entire string at once.
### Problem Description When using tabbed layout with simpleTabbed, the focus will jump to the first tab when moving a floating window. The same problem does not appear with the...
Cabal files apparently allows writing curly braces around blocks, which confuses implicit-hie. For example, this file: https://github.com/ivan-m/graphviz/blob/42dbb6312d7edf789d7055079de7b4fa099a4acc/graphviz.cabal#L59 ``` Library { -- ... ``` will generate a `hie.yaml` file like this...