Case Nelson

Results 78 comments of Case Nelson

Thinking about valid single use keywords could be useful: - When keywords get passed to a library such as query-params in http libs, or hiccup attributes into the dom. These...

For global user config, this sounds fine. A warning in the logs probably won't reach people so a message to the clients might be better. An alternative to a warning...

If you don't know which call sites can't be updated, the option to continue anyways is introducing bugs that would be hard to find and only be caught at runtime....

Other worries. ```clojure (apply f args) (defn exec [k a b c] (let [fns {:x f :y g :z h}] ((get fns k) a b c))) ```

It's been an important principle of this project to not leave user code in a broken state through partial refactors. So, if you look at the way intellij (java; possibly...

@NoahTheDuke Yeah, intellij has an option to "search strings and comments" for refactors and flag that. I could see us adding that flag for general refactorings. But that string could...

> Sounds good. the refactor name is a little bit weird to me, maybe we are trying to fit mnemonics and making the name more confusing that it could be?...

@bpstahlman great write up. I think your capture and emit commands could work but would take some getting used to. There might be some small benefit to matching paredit because...

Definitely deferrable, but what's being saved here? Personally, it feels like the frontend shouldn't be sending the request.

For the record, there is now a `name` associated with implicit actions, but I think the name should still be done on the FE when POSTed.