Dan Kessler

Results 54 comments of Dan Kessler
trafficstars

I think there is a typo in the configuration for the `helm` layer [here](https://github.com/syl20bnr/spacemacs/blob/e32acdfadf6180288d627d39422b43863433fbc0/layers/%2Bcompletion/helm/packages.el#L33) ```emacs-lisp (setq helm-packages ... (helm-ls-git :require git) ... ``` where the `:require` keyword should probably be...

Sure, I'll submit one now. I just want to be clear that this will effectively nerf `helm-ls-git`, which will fix this bug, but if our goal is to excise `helm-ls-git`...

I've been following along, and I think I understand what is going on. Apologies in advance if we've already figured this out, but I wanted to summarize my understanding before...

After digging into this more, the place for a deeper fix would be upstream and most likely in [bind-map](https://github.com/justbur/emacs-bind-map), but I'm not even sure it makes *sense* for it to...

The issue with `lsp` would need to be fixed in the upstream package [lsp-latex](https://github.com/ROCKTAKEY/lsp-latex); I'll try to fix it there. UPDATE: [upstream PR](https://github.com/ROCKTAKEY/lsp-latex/pull/44) is now submitted

@tigerjack the local variable `TeX-master` seems to be working correctly for me, e.g., if I open a file that has ``` %%% Local Variables: %%% mode: LaTeX %%% TeX-master: "../main"...

This is a bigger pain than I thought. When `packages.el` is run, `AUCTeX` has not yet been loaded, so it's somewhat challenging (to me at least) to figure out whether...

I have opened a [PR](https://github.com/justbur/emacs-bind-map/pull/9) against `bind-map` that should hopefully fix these issues without requiring further modifications to `spacemacs`.

@tigerjack I suspect the issue is with the way your major-modes are getting specified. If I understand correctly, in the new version of AUCTeX, TeX-mode isn't really a mode you...

@James-Hanson asks: > Is there a quick fix for this issue at the moment? One hack is to (painstakingly) duplicate the logic for `latex-mode` for `LaTeX-mode`, which is what I...