Martin Gausby
Martin Gausby
Is this the pdf? …will it eventually turn into a book? :)
How about suggesting folders based on the information provided by `project/0` in _mix.exs_? Phoenix set the _web_-folder by adding it to `elixirc_paths` on the map returned by this function.
When it comes to Phoenix; the plan forward should be to include the web folder in the lib folder, so I don't think alchemist should cater in any special way...
@whatyouhide I guess we need a default keybinding to provide a base level of usability. That said, I am no usability expert.
I am using a standard american keyboard, and I don't think \ `C-c \` is that hard to type, though you would need two hands, and the right hand would...
@whatyouhide that is okay. I just tried to bring some justifications and do some reasoning. This would be the first Emacs package I've encountered that didn't provide default bindings, if...
First part is solving namespaces for injections, then the execution. Files of interest: - https://github.com/shopgun/graphql-erlang/blob/develop/src/graphql_elaborate.erl - https://github.com/shopgun/graphql-erlang/blob/develop/src/graphql_schema_canonicalize.erl - https://github.com/shopgun/graphql-erlang/blob/develop/src/graphql_schema_parse.erl - https://github.com/shopgun/graphql-erlang/blob/develop/src/graphql_schema.erl
Adopting this format to the previous would be fairly easy: ```erlang scalar(input, Type, Val) -> input(Type, Val); scalar(output, Type, Val) -> output(Type, Val). ```
It would be beneficial to have pass the context into the scalar/coecer function as well; that way it would be possible to make decisions on the input/output based on the...
It is not, and it shouldn't be. I had the same issue in another project of mine called Tortoise. It is really a matter of adding `only: :test` to the...