Cameron Daniel

Results 32 comments of Cameron Daniel

Pretty much correct except the X11 requirement. Flags needed are `--without-ns --with-pgtk` but GTK3 does support macOS natively without XQuartz, I just needed to `brew install gtk+3` Personally I think...

For people stumbling across this thread via Google search, the issue is that Postgres clients negotiate TLS with the server directly. The client expects a non-TLS handshake prior to upgrading...

> @AyushSingh13 do you know any workaround for prototool format? Also interested in this

I did a bit more reading on this and based on some comments in the [`buf` repo](https://github.com/bufbuild/buf/issues/11#issuecomment-567119935) it seems like the prototool formatter is lossy and probably not a great...

+1 for this, an example use case I have would be something like this: ```typescript import { api, endpoint, request, response, body } from "@airtasker/spot"; @api({ name: "My API" })...

Yeah ok - that makes sense. I kind of forgot that this isn't intended to be integrated into a Typescript project but it only uses a subset of TS 😅...

Thanks for the quick response! I've done that in the interim but would love to stick to the IETF models if I can. Whenever a fix is possible would be...

Also the test for the JSON encoding is failing but I can't figure out why. `NotificationSetEqual()` thinks they're different but `cmp.Diff()` disagrees so the output looks a little wonky.

Yeah sorry - I did see the request for test coverage and tbh I forgot. I'll sort it tomorrow 👍

https://github.com/ccakes/telescope-project.nvim/blob/a4bd660120aa4ce9acd687194617bd49ea8cb796/lua/tests/utils_spec.lua#L53 Ok I added some test coverage, but this one fails and I'm not sure why. If I print the `:cwd` after calling `utils.change_project_dir` it looks correct, but `haslocaldir` isn't...