Mathias Stearn

Results 38 comments of Mathias Stearn

Unfortunately due to a large number of filtered-out files (the build dir, git, third_party, etc) a full scan takes 2-3 seconds which is a but too high of a penalty...

I handle this by having a style block at the top of my document containing among other things: ```html label { font-weight: bold; } #hide_rm:checked ~ .wording .rm { display:...

One trick is to `#include "foo.hpp"` from inside of `foo.ipp`. This ensures that `foo.ipp` is independently compilable, which makes many things work better.

Note that it is the default term for cygwin, so many people probably have it already but don't know it by name.

Additionally, I have the muscle memory from some custom vim commands, and it would be nice to be able to carry that over to VsVim. In particular I'm used to...

@aquynh Have a look at the new readme.

Thanks for explaining the 3-byte cutoff for ztd. That led me to try expanding the data to 8 byte int64's (using `array('q)'` and `BASE=0x1234567890abcdef` in my script). I found that...

I think to be conforming, that example would need to use a `R"(raw string)" since it spans multiple lines. I'd also make it use names that don't exist so it...

Should have a test with attributes like `import foo [[ns::a]] [[ns::b]];`. Could be really evil and do `import foo [[ns::evil("]]")]];` to break regexes that try to match attributes like `import\s+((\w+)(\s*\.\s*\w+)*)...

```cpp #define NO_SUCH_MODULE import NO_SUCH_MODULE; ``` Should be handled as a header unit import of `` rather than importing a module named `NO_SUCH_MODULE`.