Richard Stein

Results 124 comments of Richard Stein
trafficstars

I started with the concept of a hover popup [here](https://github.com/r-stein/LaTeXTools/blob/6f4fb7f52cb7ad49269046c22d42bf8710ed6708/jumpto_anywhere.py#L84-L108). If you want to use the first version you can download it here: [jumpto_anywhere.py](https://raw.githubusercontent.com/r-stein/LaTeXTools/jumptoanywhere_hover/jumpto_anywhere.py) and replace the file in your...

You need to replace the whole file. There are imports at the top and a hover listener at the bottom.

Yes in the first approach it just reuses the information of the [`cite_panel_format`](https://github.com/SublimeText/LaTeXTools/blob/master/LaTeXTools.sublime-settings#L581) setting (because that is easily available), which is by default: ```js "cite_panel_format": ["{author_short} {year} - {title_short} ({keyword})","{title}"],...

So you have any error output in the ST console ``ctrl+` ``?

You have set the [`command_completion` setting](https://github.com/SublimeText/LaTeXTools/blob/st3-3.14.2/LaTeXTools.sublime-settings#L64) to `prefixed`? And you have tried to restart Sublime Text? (LaTeXTools checks for the availability of LaTeX-cwl only after the start.)

This should not be related to that, because the load order shouldn't matter (and be the same) unless you have an other package, which changes LaTeXTools settings. Nonetheless your user...

We added some code to get a minimal width for the auto-complete, but this had some side-effects and I think I will remove that code for the next update.

How do you add the bibliography? Does this also happen after you clear the cache (C-l, C-d, C-c)?

Have you wrapped `\bibliography{bibliography}` inside an other command? Can you please provide a minimal working example, which produces the error?

Yes you are correct the analysis stops at `\end{document}` and is not smart enough to detect such cases. You can try to remove [that line](https://github.com/SublimeText/LaTeXTools/blob/v3.13.5/latextools_utils/analysis.py#L431). Not sure what would be...