Finn Völkel
Finn Völkel
I am often deleting lines/blocks with visual line (block resp.). With evil-paredit this doesn't work any longer even when the region I am deleting has well balanced parentheses.
This adds the option to display a tab index. Makes jumping to tabs easier.  The indentation in `centaur-tabs-functions.el` is quite off. So let me know if something about that...
I have tried the crawler and everything runs fine, except that the `maxUrls` parameter does not seem to get honored correctly. Admittedly, I set it to a rather low value...
This would allow to get valid-end-time in queries without resorting to creating future db instances ```clj '{:find [?e ?end-time] :where [[?e :type :some-value2] [(get-valid-end-time ?e) ?end-time]]} ``` the predicate constraint...
This came up in a discussion with @refset. Currently the `put` txs of evicted entities show up in the tx-log (`(xt/open-tx-log node -1 true)` as ```clj [:xtdb.api/put {:xtdb.api/evicted? true, :xt/id...
The test that illustrates this issue is the following (and adapted version of the first `map-test`) ```clj (testing "bad map-fn serialization" (let [p (sut/make-pipeline []) input (-> [{:a 1} {:b...
I think it would be nice if the `datasplash.api` functions have kind of the same semantics as the `clojure.core` ones as it otherwise makes debugging things at the repl extremely...
```clj (deftest test-nested-subqueries2 ;; works (t/is (= [{:foo 1}] (xt/q tu/*node* '(-> (rel [{}] []) (with {:foo (q (rel [{:c (+ 0 1)}] [c]))}))))) ;; doesn't work (t/is (= [{:foo...
```clj ;; works (xt/q node '(-> (rel [{}] []) (with {:foo $outer})) {:args {:outer 1}}) ;; works (xt/q node '(-> (rel [{}] []) (with {:foo (q (-> (rel [{}] [])...
The following queries: ```clj (xt/q node '(-> (rel [{}] []) (with {:foo (if-some [some-symbol 1] some-symbol 0)}))) (xt/q node '(-> (rel [{}] []) (with {:foo (let [some-symbol 1] some-symbol)}))) ```...