Results 48 comments of Alan Schmitt

I fixed it locally this way: ``` emacs-lisp (defun as/company-auctex-prefix (regexp) "Returns the prefix for matching given REGEXP." (and (derived-mode-p 'latex-mode) (when (looking-back regexp) (match-string-no-properties 1)))) (advice-add 'company-auctex-prefix :override 'as/company-auctex-prefix)...

As a workaround for the prefix length, I have this in my configuration. ``` emacs-lisp (eval-after-load "latex" '(add-hook 'LaTeX-mode-hook (lambda () (setq company-minimum-prefix-length 4)))) ```

I just gave this a try and `brew install zeromq` allows me to install iocaml-kernel. I have had similar issues with gmp before, so I now have the following in...

I'm not sure to understand the feature you're asking for. You want review delays to change at each review? So after doing the 1d review, the list changes by removing...

I won't have time to implement this. I will gladly consider a pull request, however.

I understand. I'll try to see if I can learn enough to come up with a patch.

I wanted to file an issue for this too, but I see that it is here. I'm interested in this feature as well.

I ended up doing it manually: ``` latex \newunicodechar{😈}{\text{\raisebox{-0.2em}{\includegraphics[height=1em]{images/1F608.pdf}}}} \newunicodechar{😇}{\text{\raisebox{-0.2em}{\includegraphics[height=1em]{images/1F607.pdf}}}} ``` I got the image files from the package for these characters.