Tom McDonald

Results 10 comments of Tom McDonald

How about using git config? You can set arbitrary properties in there, e.g. ``` git config --global gistup.private true ``` I'm not sure how easy it would be to access...

Not every two highlighting styles can be mixed. For example, I'm using the same color scheme as you are, so my search highlight uses a yellow background. However, I've customized...

I was thinking more about the idea of blending syntax groups. The ideas you're bringing up could lead somewhere, but I'm wondering if it might be more sane to allow...

I've also been thinking about the overlapping pattern problem. Consider the following case: - Cursor word is `foobar` (yielding the pattern `\`) - Search pattern is `b.r fight` If the...

To address your last comment, Vim doesn't do syntax highlighting by listing what style properties to add to text; it does so by saying which group to apply to which...

I want to clear up a possible confusion. Matchmaker isn't removing highlighting from portions of text that are highlight by the search pattern. It's just applying a new highlight group...

I think intersection is the wrong word for what we need. Going back to my example, the string `bar` matches neither pattern, but it is a substring of text matching...

What about `CursorHold`? On Sat, Jan 3, 2015, 2:54 AM Quinn Strahl [email protected] wrote: > Vim doesn't do asynchronous. At least not without some severe python > hackery, and even...