dpsutton

Results 81 comments of dpsutton

I created a table where the timezone comes from a field in the table: ```sql testing=# create table tz_field(id serial primary key not null, ts_tz timestamptz, ts timestamp, tz text);...

@ariya This looks good. However I'm not super familiar with Github actions. Can you explain what happens in the following scenario? Suppose you change the postgres driver and also edit...

A feature similar to this has existed for a while: ![image](https://user-images.githubusercontent.com/6377293/162544722-675c92cd-0b38-43b3-9a3c-ab6fb4fbee8c.png) Added in https://github.com/metabase/metabase/pull/13687 (commit messages have lots of context and detail) If this feature is enabled, the sync task...

Initial thoughts: just check the value of those variables are in the clojurescript file. `C-h v [ret] cider-clojure-cli-aliases`. Easy diagnosing steps: - comment out the clojure-mode stuff - `(hack-local-variables)` to...

its still there: https://github.com/clojure-emacs/cider/blob/master/cider-mode.el#L241 I'm not able to reproduce but i know these kinds of things are really annoying. Some things to try: Investigate what's going on with `cider-repl-input-start-mark`. This...

This also affects `clojure-sort-ns` except not tragically. It calls `(comment-normalize-vars)` at the top which creates match data which usually coincides with the ns form. But if you put another form...

This also affects CIDER as well. ```lisp (defun cider-eval-ns-form () "Evaluate the current buffer's namespace form." (interactive) (when (clojure-find-ns) (save-excursion (goto-char (match-beginning 0)) (cider-eval-defun-at-point)))) ``` ```lisp (defun cider-ns-form () "Retrieve...

The simplest repro is to have a buffer with a simple `(ns )` form and call `clojure-find-ns`. Seems like this should be fixed in clojure-mode and perhaps also CIDER?

I use lsp alongside of CIDER. They work fine together but i have the following config. It mainly makes CIDER in charge of indentation and completion. ```lisp (use-package lsp-mode :init...

@bbatsov oh i like that! i'm gonna switch it over