Matt Kramer

Results 8 comments of Matt Kramer

For now, here's some advice for ignoring anything in `.gitignore`. At some point I'll try to submit a PR with per-workspace variables for toggling this behavior and manually un-ignoring specific...

It looks like the problem comes mainly from repeated calls to the slowpoke function `texmathp` (via `sp-in-math-p`). Based on my cursory glance at the code, for every inserted character, smartparens...

In Emacs 27.0.60 (75a9eee8b) I also find that the workaround is no longer necessary and leads to double closing parens.

I'm finding that in Jupyter Console 6.1.0 (IPython 7.12.0, Python 3.7.6), `c.TerminalInteractiveShell.highlighting_style_overrides` (as suggested by the auto-generated `ipython_config.py`) is not being picked up by `ZMQTerminalInteractiveShell`. Using `c.ZMQTerminalInteractiveShell` doesn't work either....

Upon preliminary inspection of magic-latex-buffer.el, it looks like the righthand column shows the intended result. It's supposed to change those faces. So now the issue is that MLB is not...

The problem seems to be that `find-file-hook` is calling `TeX-update-style` after MLB has initialized, and `TeX-update-style` clears `font-lock-keywords` (by setting `font-lock-set-defaults` to `nil` before calling `(font-lock-set-defaults)`. So the effect of...

I can confirm that the problem goes away when I put `latex-magic-buffer` in `TeX-update-style-hook` instead of `LaTeX-mode-hook`. Should this be documented in the README? Anyway I'll go ahead and submit...

To elaborate on kgadek's answer, here's a newbie guide to doing a "global" install of stack-run while this issue remains: ```shell mkdir build-stack-run cd build-stack-run stack unpack stack-run-0.1.1.4 ``` Paste...