ParetoOptimalDev

Results 187 comments of ParetoOptimalDev

I've got this working on my laptop and find it both very useful, but seems to require a bit of a shift in perspective where files are their own groups....

Skimming that issue, it may be that I'm still on an older OSX version than you are if you aren't experiencing this issue.

It could be that because your user isn't 1000 you are getting issues. I've had issues with docker container permissions before where containers only work if your uid is 1000.

I tried naively adding `.#` to nix--pcomplete-flags even though it's not a flag and that didn't work: ``` ("build" (nix--pcomplete-flags (append nix-toplevel-options '("--arg" "--argstr" "--dry-run" "-f" "--file" "-I" "--include" "--no-link"...

I tried using edebug to understand `pcomplete/nix` and figured out that while `nix build` hits its code path, `nix build .` hits it, `nix build .#` does not. `.#` seems...

`.#` is special because it's an eshell glob. I can progress a bit further following the control flow in edebug by removing `#` from `eshell-glob-chars-list` but things aren't quite working....

Oh, actually it's working! I just wasn't in a directory with a flake. So this works (if the code is correct): ``` (setq eshell-glob-chars-list '(93 91 42 63 126 40...

Mine was working last night when I installed, then this morning I noticed this "screen time unavailable" message. I tapped "Grant Permission" and it of course already has permission. I...

@domenkozar This is very prelimnary, but I just wanted to get something up and working. I'm guessing you want to structure things like `dotenv-functions` differently, perhaps even having the test...

I'm having problems getting the regex to optionally match surrounding single quotes. I'm pretty close though with: https://regex101.com/r/ch9iSw/1 ``` ^'?(.*?)'? *= *'?(.*?)'? ``` I think the issue is with the...