Ryan Pavlik

Results 7 issues of Ryan Pavlik

For some reason, using `target_link_libraries(... OpenGL::GL)` causes `-isystem /usr/include` to be added to the PCH build, which apparently causes breakage: ``` /usr/include/c++/8.3.0/cstdlib:75:15: fatal error: stdlib.h: No such file or directory...

Is there a reason `NormalizePath` in `platform_posix.cc` uses a function which does *not* expand symlinks? (i.e., `RelPathNotExpandSymlink`) As per my comment in cquery-project/emacs-cquery#47, this appears to produce incorrect results. For...

It seems possible to append each result in constant time, rather than `n`, which should improve the time complexity of `FIND-ALL`.

The find tests are based on eyed values, which have been wrong. Write a complete tree walker to compare against.

Addresses #123. This adds a dropdown which is populated with a few options to support multiple clients: - Always Switch / Old Behavior (default) - Never Switch - PID-based selection...

**Describe the bug** When running multiple clients, e.g. one "trading character" and one "main character," the client focused for sending messages / invites / etc is incorrect. **To Reproduce** Steps...

bug

The title says it all: ```js notifier.notify({ title: 'foo', msg: 'bar', id: 1, }); // No: notifier.notify({ remove: 1 }); // Yes: notifier.notify({ close: 1 }); ``` `snoreToast` uses `-close`,...