Matt Huebert
Matt Huebert
In https://github.com/Day8/re-frame/blob/master/src/re_frame/subs.cljc#L188, the work of traversing & dereferencing is being done twice. It looks like the purpose of the inner `cond` form is to print a warning if an unexpected...
Currently one must list all transitive dependencies of a module in `:depends-on` -- transitive deps could be inferred from immediate deps. see: https://clojurians.slack.com/archives/C6N245JGG/p1559812431073100
Currently in node development it is not possible to listen to global events, such as "before-js-reload". Per https://github.com/bhauman/lein-figwheel/blob/e47da1658a716f83888e5a5164ee88e59b2d8c1e/support/src/figwheel/client/utils.cljs#L29, this would require lifting the events system off the DOM.
Is there any reason the [transit packer](https://github.com/ptaoussanis/sente/blob/master/src/taoensso/sente/packers/transit.cljc) doesn't include memoization of payloads? The [recommended](https://github.com/ptaoussanis/sente/blob/master/example-project/src/example/server.clj#L125) way to broadcast a message to a group of subscribers is to loop through a list...
Combokeys supports bindings directly to characters like "(" or "*", which appear under different physical keys depending on the international format of the keyboard. Is there a way to add...
We now have auto-indent available via `M2-Tab`, but it currently does not manage cursor position properly so it is not suitable for use as an automatic thing that happens during...
in three parts, a) recognize when human input was invalid, b) gather candidate replacements, c) find the likely matches. Probably use a lib like `didyoumean` - https://github.com/dcporter/didyoumean.js (2kb)
We should have a way to _browse_ commands, without any need for prior information about a desired command. In command-search, you have to start from text that you manually type,...