luxbock

Results 11 issues of luxbock

More specifically, if the function includes a return type, as defined in Schema by: ``` clojure (defn name :- Type "doc-string" [args] body) ``` Then Marginalia misses the doc-string, as...

- Functions for dragging symbols left/right - Buffer-local variable for controlling the behavior of `drag-stuff-right` and `drag-stuff-left`.

```clojure (defn filter-attribs [attribs] (loop [acc (transient attribs), ks (keys attribs)] (if ks (recur (if (= "__" (subs (name (first ks)) 0 2)) (dissoc! acc (first ks)) acc) (next ks))...

This feels a bit ugly but was the simplest way I came up with to address #41.

I really like the synergy between `byte-streams` and `gloss`, so I found it a bit odd that while `byte-streams` supports converting to a DirectByteBuffer via the options map, there doesn't...

I spent some time trying to figure this one out but there's too much going on with Evil and Emacs that I ran out of energy to figure it out....

It's possible to pre-render your application server side with React based wrappers by evaluating your components in Nashorn and calling `rendertoString` to get the HTML output. Since Hiccup works just...

This could probably be done much in the same way that nakkaya's [static](https://github.com/nakkaya/static/blob/master/src/static/io.clj#L37) does it: by calling Emacs via clojure.java.shell to batch export org to html. Using it like this...

enhancement
question