Chip Hogg

Results 260 comments of Chip Hogg

I've found a workaround in the meantime. Whenever this happens, the contents of the macro include surprising control characters. For example, printing the above macro with `"qp` gives: `^DA`, where...

@kwikius, could you please indulge me and also test the compile time for including [this file](https://aurora-opensource.github.io/au/0.3.4/au.hh) with the following code? ```cpp #include "au.hh" // the above file #include int main()...

Hmm... I was expecting better. Would be interesting to dig into the compile time profile at some point. Still, thanks very much for indulging me!

I think the solution is to follow general C++ best practices, and avoid blanket using directives in favor of individual using declarations. That is, in each individual `.cc` file, we...

I think the green "Important" block should be improved, yes. We currently list the "using directive" approach first, and without comment. This makes it look like we're recommending it! I...

I think there's actually a major use case: [vim-dirvish](https://github.com/justinmk/vim-dirvish). The directory buffer in dirvish uses concealed text: each line contains the full path, but only the filename is visible. This...

I had a thought this morning: can we simply discard any matches _after_ the fact, if it turns out that their text is completely concealed? (I have no idea how...

Note: in discussions relating to the standard units project, we ended up converging on an `EQUIV` syntax: ``` Old: COM([1 / 15625] km / h == [1 / 25146] mi...

One slight complication to consider is that some users might have functions that are generic not just across different `Quantity` types, but also between `Quantity` types and raw numbers (and...