Richard Cook
Richard Cook
You should use `attr-encrypted/attr_encrypted` since the fixes in this fork have now been backported to the original project.
One approach might be for the code generator to generate `newtype` wrappers for every `Text` argument.
I tried `setApplicationName` and that doesn't work while `setProgramName` does.
@fh-schwarzh : Did you ever figure this issue out? I'm seeing it too.
Sample program `Main.hs` (the content doesn't matter - as long as it's valid Haskell): ```haskell {-# LANGUAGE DataKinds #-} {-# LANGUAGE GADTs #-} {-# LANGUAGE KindSignatures #-} {-# LANGUAGE TypeFamilies...
```bash $ uname -a Linux mymachine 4.15.0-38-generic #41-Ubuntu SMP Wed Oct 10 10:59:38 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux $ code --version 1.29.1 bc24f98b5f70467bc689abf41cc5550ca637088e x64 $ stack --version Version 1.9.1,...
I've disabled all Haskell-related extensions in VSCode (using `--disable-extensions`) and reset all settings to default (by deleting `settings.json` etc.) and the problem persists.
I just did some experimentation with inotifywait: ```bash #!/bin/bash while inotifywait -e modify src/Main.hs; do stat src/Main.hs done ``` This will occasionally report a zero-length file size. I think it's...
I created a VSCode issue: https://github.com/Microsoft/vscode/issues/63720. I think that this issue might be an interaction between Git, VSCode and inotify.