Blake Williams

Results 54 comments of Blake Williams

Thanks for adding block support! I lost that one in my TODO's a while back since I've been pretty busy lately. I'm not positive the locals changes as-is would help...

> I can relate to that! Since ViewComponent was the pilot tool for driving out `render_in`, that makes a lot of sense. In my understanding of where ViewComponent fits in,...

You can use vim's [highlight](http://vimdoc.sourceforge.net/htmldoc/syntax.html#:highlight) function and the syntax names of the arrows, which are `NERDTreeOpenable` and `NERDTreeClosable`. e.g.: `highlight NERDTreeOpenable ctermfg=1` to change the arrow color for Vim in...

Hah, that's a great idea! I happily accept pull requests. :)

I love this idea. I'd happily accept a PR if anyone wants to start on it, if not I can look into working on it soon.

Agreed. I'll close this once Ruby/Rails has a good concurrency story.

If you run the following in `config/config.exs` below `use Mix.Config`, does it work? ``` elixir unless Mix.env == "prod" do Envy.auto_load end ```

Can you call `Application.load(:envy)` or does that also not work in the mix config?

Ah! Turns out Mix.Config doesn't allow dependencies to be used, or easily compiled and used in the config file. There is a workaround, which I think may be a good...

No problem! I think this would be nice as `Envy.reload_config` or some better name. Feel free to open a PR, if not I'll try to work on it today.