Will Acton
Will Acton
TBH I gave up on this and decided to roll my own config without Doom, based around meow
Setting `:stream t` results in the following messages: ``` [error] request--callback: JSON readtable error: 100 Internal error: 200 ``` With `(setq openai--show-log t)` ``` [ERROR]: #s(request-response 200 nil nil (json-readtable-error...
Priority also is dropped ```clojure (org/read-str "* [#B] foo bar") ;; => {:headlines ;; [{:headline ;; {:level 1, ;; :title [[:text-normal "foo bar"]], ;; :planning [], ;; :tags []}}]} ```
`COMMENT` is also dropped
With PR #69, `* TODO [#B] foo bar` should now output ```clojure {:headlines [{:headline {:level 1, :title [[:text-normal "foo bar"]], :planning [], :keyword "TODO", :priority "B", :commented? false :tags []}}]}...
I'm looking into the failing tests
@schoettl anything left for me to do before you merge this?
I'm going to throw a wild idea out here: could `fn` analyze whether `this-as` is used and emit an arrow function if not?
Just writing my thoughts down... I think that the first one is the same thing we've been talking about re: `this`; it's not that you can't do ```js {a: ()...
I ended up doing this to quiet the error: ``` onError(({ error }) => setTimeout(() => setError(error), 0)) ``` However, this could be broken in concurrent mode, since this is...