Sean Smith

Results 37 comments of Sean Smith

Sail should work with any repo, even if there isn't a `.sail`. Sail will try to determine the major language for the repo and select an appropriate docker file to...

Might be interesting to look into [tramp](https://www.gnu.org/software/tramp/) and [docker-tramp.el](https://github.com/emacs-pe/docker-tramp.el) for emacs.

I believe this might be a bug in Emacs itself. I run into this error most frequently when jumping up and down a buffer via `C-u` and `C-d`. Evil's `evil-ensure-column`...

Hi Eli, thanks for responding. As a clarifying question, should we ever expect `temporary-goal-column` to contain negative values? If not, I have a small reproduction showing how to get negative...

Hi Eli, more detailed steps below. 1. Save the following to some file (I chose `/tmp/repro.el`): ```elisp ;; Repro (global-display-line-numbers-mode 1) (global-whitespace-mode 1) ``` 2. Load and open the file:...

This seems to happen no matter the font or font size I pick. Specifically I ran each of these expressions in turn and repeated the above steps: ```elisp (set-face-attribute 'default...

No worries, the linked PR fixes the immediate issue with evil passing around negative numbers, so that's probably good enough for now. When I have time, I'll try to dive...

Running release build here: https://github.com/GlareDB/glaredb/actions/runs/7133666350

fwiw this doesn't work in postgres ``` postgres=# select a as aa from (values (1), (2)) t1(a) where a = 1; aa ---- 1 (1 row) postgres=# select a as...

``` sean@Seans-Air ~ % ./glaredb GlareDB (v0.8.0) Type \help for help. > create external database pg from postgres options (connection_string = 'postgres://postgres:[email protected]:5432/postgres'); ^C sean@Seans-Air ~ % ``` That postgres instance...