Philippe Vaucher
Philippe Vaucher
Ah, good question. @tarsius: is there a transient mechanism so we are able to store transient default settings per projectile projet? Maybe by having projectile modify `transient-values-file` each time a...
@noorul: I think editing a `.dir-locals.el` that sets `transient-values` to the appropriate thing should work, see the linked issue (that is, until it's directly supported by transient). If you want...
If I had an example to give you I'd have done so. I have more urgent things to do (e.g the magit-like process buffer when you press `$`), so the...
@maaroen: it's not supported directly but you can select one file then add the 2nd `-f` flag yourself. So, in the popup you'd type "docker-compose.yml -f docker-compose.override" as the value...
@maaroen: with what interface tho? @tarsius: do you have something in transient to input "multiple times the same flag"? Right now all I can suggest is the above. The end...
@tarsius: thanks! will do.
@tarsius: sorry, being a new father makes me really busy :sweat_smile: This is about this https://github.com/Silex/docker.el/blob/master/docker-compose.el#L312: ``` elisp (transient-define-prefix docker-compose () "Transient for docker-compose." :man-page "docker-compose" ["Arguments" ("a" "No ANSI"...
@noorul at the moment to use multiple compose file you press `f` then input `foo.yml -f bar.yml`. I'm not sure it's even feasible as https://github.com/Silex/docker.el/blob/master/docker-compose.el#L317 doens't use `read-string`. There's this...
That looks neat! That is indeed a problem that pops from time to time (#68) and we have another issue that would be directly solved by this: #137 @maaroen would...
@gitonthescene, @tarsius: thanks for helping me figure out what needs to be done :heart: @tarsius: basically some options are unique, some options can be repeated. Right now there are 3...