Andy Walker
Andy Walker
Relevant settings: ``` "vsicons.customIconFolderPath": "/Users/andy/.vscode/custom-icons", "vsicons.associations.files": [ { "icon":"magefile", "format":"svg", "extensionsGlob":["go"], "filenamesGlob": ["magefile"], "filename":true } ], ``` ``` ~/.vscode ❯ ls -la total 8 drwxr-xr-x 5 andy staff 160B Mar...
I made a PR for this, adding a `--skip-empty` option that only works if you are testing `./...`, since that's the probably the only situation where you would want to...
I, too, do not enjoy needing two calls for peace-of-mind that my JSON will not break once I start processing it. This would be super handy to have merged into...
> @mondy I don't think variadics play nice with specifying multiple build targets. > > For example, if your mage file had `func Foo(arg1, arg2 string)` and `func Bar()`, then...
Is this good to merge?
So how is this done? I find myself pretty dissatisfied with the way I've been doing it, and would love to do it another way, thanks!
So, I've actually found a way to do it in docker, using docker and `xvfb` :) This should make automating shots as part of builds a breeze, but I'm very...
Thanks for that. I still haven't integrated that particular portion yet, but I do finally have a full example working for taking screenshots using xvfb and docker. It uses matchbox,...
This change should actually be made [here](https://github.com/Jeffail/gabs/blob/master/gabs.go#L318), since `SetP` merely calls `Set`, as do several other methods.
I believe what he's reporting here is something I ran into during testing attempting to set a `map[string]string` value: ### Code ```go package main import ( "fmt" "github.com/Jeffail/gabs/v2" ) func...