Results 371 comments of Rob Brackett

I looks like this has been fixed in the 3.0 branch, and the comments on #2392 and #5430 note that a change like this is too much of a breaking...

@kachkaev In my case, I was able to write ignore patterns to cover *most* of our symlinks, so it wasn’t too painful to turn on `followSymlinks` as a workaround. This...

Hey @josephschito, I’m sorry for the slow response here. Unfortunately I don’t have an M1 Mac to test with and have been extra-busy with some COVID-related projects lately, but am...

`editorconfig-core` is included as a submodule — did you `git submodule init`?

I should hopefully have this building as a universal bundle later this week.

A test release of this is available as v0.5.0-alpha1: https://github.com/Mr0grog/editorconfig-textmate/releases/tag/v0.5.0-alpha1 If you try it out, please let me know if you run into any issues.

I cut a test release (v0.5.0-alpha1) here: https://github.com/Mr0grog/editorconfig-textmate/releases/tag/v0.5.0-alpha1

Ugh, that looks terrible. I’ll take a look at this as soon as I have time and am able, but I’m not sure if that will be any sooner than...

Need to see if I can create my own `std::multimap` here and pass it to [`OakDocument -performReplacements:replacements checksum:crc32`](https://github.com/textmate/textmate/blob/master/Frameworks/document/src/OakDocument.mm#L1783) (where [the checksum isn’t checked](https://github.com/textmate/textmate/blob/master/Frameworks/document/src/OakDocument.mm#L1786-L1791) for a loaded doc) or maybe directly...

Oh, actually, I might be able to just leverage [`OakDocument -matchesForString:options:`](https://github.com/textmate/textmate/blob/master/Frameworks/document/src/OakDocument.mm#L1323), since its find results include a CRC32. (See values of `find::options_t` at https://github.com/textmate/textmate/blob/fb929aee10c271c1a5b87ddf1ff5e172bc7a8396/Frameworks/regexp/src/find.h#L8-L22) See how TM does this internally:...