Joe Schafer
Joe Schafer
I have a large [org-file](https://github.com/jschaf/org-drill/blob/master/programming.org) (300k) that git-gutter-+ runs slowly on, as in it takes 5 seconds for `git-gutter+-refresh` to run. Using regular`git-gutter-mode` runs instantaneously. Here's the profiler report. ```...
In a nested sub-select from a single table, sqlc reports an ambiguous column reference even though the inner query is only from a single table. **Config: sqlc.yaml** ```yaml version: "1"...
Hi Niklas, I reached out a few months ago. I have some time so giving doctave a go. Our repo is structured so that docs live next to the code,...
I have a README.md page that links to two internal docs pages: ```md - [Developing](doc/dev/README.md): - [Bazel](doc/dev/developing_bazel.md): ``` The first link to `doc/dev/README.md` doesn't work in doctave because doctave serves...
What's your stance on adding validation for well-known types? I'd like to add support for the following types: - google.type.Money. - google.protobuf.Timestamp - google.type.PostalAddress - google.type.Decimal Alternately, is there a...
Closure errors out if you try to get `ex.message` from a catch block. Since reportUnknownTypes is enabled by default and recommended for new code bases with these rules_closure, I'm filing...
First off, I love this library. It's by far the nicest protobuf library for TypeScript. I noticed that generated client implementations require a complete message for all RPC method. Two...
You can't use tooltips for anything else if flycheck-pos-tip is enabled. `flycheck-pos-tip-hide-messages` is in `post-command-hook`, so a call to `pos-tip-show` or any other command will hide the tooltip immediately after...
Use case is to enable queries with dynamic expressions for WHERE clauses, like: ```sql SELECT * FROM foo WHERE pggen.predicate('filter_expr') ``` Sketch: - Generated Go code takes a `FilterExpr` function...