Yoav Marco

Results 40 comments of Yoav Marco

I would also very much like to use webkit-katex-render through eaf, currently I cannot use it at all under linux because of flicker issues with webkit.

I was using TeX-fold (from auctex), which folds latex macros and symbols to unicode or for better readability. For example `\alpha` -> `ɑ`, `\texbb{bold}` -> **`bold`**. It uses overlays for...

I'm sorry to poke, but what's the status of this?

> Thank you for taking the time to profile the runtime and for providing the PR. My pleasure, optimizing code to run faster is one of the things I love...

Yeah, I thought about this, but I don't know if parsing it from binary would be much better than parsing the `.map`, which already looks pretty straightforward. We'll see, I...

Would be also cool to maybe read the entire map file (or cache) file to memory and mess with [C++17 `string_view`s](https://en.cppreference.com/w/cpp/string/basic_string_view) to avoid allocating all of those `std::string`s. Though we...

Was introduced by #3823 I think. Still don't know why though. For now, does this fix it? ```emacs-lisp ;; put in config.el (assq-delete-all 'latex-mode +spell-excluded-faces-alist) ```

> Was introduced by #3823 I think. Still don't know why though. Actually I'm not sure this makes sense, this issue was opened on August the 24th while my PR...

Looks ok. In my original code I tried to not call `cons` and create garbage unless I had to, which is why I modified the prefix maps in-place. Do you...