Austin Bingham
Austin Bingham
Sounds good to me.
After looking at the code a bit, I see that the mode does this kind of indentation quite well: ``` Mux16( a=XWithY, b=InvertedXWithY, sel=no, out[0..7]=OutLow, out[8..15]=OutHigh, out[15]=ng, out=out); ``` This...
On first attempt, just putting g∘f into inline code delimiters (i.e. ``g∘f``) doesn't work. The ∘ still doesn't display on my kobo.
I don't know of anyone who's looked into it, but it wouldn't shock me if we're slower than we could be. Some quality time with the emacs profiler might turn...
I'm no longer maintaining this project. Sorry.
Something along these lines would work well for my purposes. Just one minor issue: in the `truncate` case, the `new_clip.duration == min(original_clip.duration, end_time - start_time)` comparison doesn't seem correct. If...
OK, this isn't _too_ surprising in retrospect. Does the situation improve if you remove `mode-enabled` from `ycmd-parse-conditions`? This may not be the proper solution, but it might alleviate the pain...
Right. When `mode-enabled` is in `ycmd-parse-conditions`, you're asking `emacs-ycmd` to parse a file as soon as it enters `ycmd-mode`, i.e. typically as soon as it's opened. By removing that from...
In summary: if you're satisfied that the `ycmd-parse-conditions` change meets your needs, then I'll close this out, and I'll also make a note in the README. If there are still...
Do you mean do the parse when the buffer first becomes visible or "has the user's attention"? We might be able to manage something like that. Emacs 24.4 introduced `focus-in-hook`...