I used the provided answers on TEX.se a lot while writing my Bachelor Thesis but couldn´t find an answer on the following question:
How do I use the LaTeXTools build-system with the glossaries package to have a list of acronyms somewhere in my document?
My MWE:
\documentclass{article}
\usepackage[acronym,nomain,toc,shortcuts,xindy]{glossaries}
\makeglossaries
\newacronym{Mr}{M$_r$}{Remanence}
\newacronym{Hc}{H$_c$}{Coercivity}
\setacronymstyle{long-short}
\begin{document}
\tableofcontents
\newpage
Here's a \ac{Mr} glossary entry.
\printglossaries
\end{document}
With my MWE on Sublime Text 3 and the latest version of LaTeXTools the following output was produced:
Using the Terminal (OS X and TeXLive 2016) with the following commands (thesis.tex is my file)
xelatex thesis
makeglossaries thesis
xelatex thesis
xelatex thesis
the correct output was produced:

Okay now why don´t I just use the Terminal: I have way more packages that require extra commands etc. - That might be obvious
Why don´t I use a TEX-specific editor: Until now the LaTeXTools Plugin does a great job and sublime text is just one of the most convenient text-editors i´ve seen so far so I would like to keep on going with it.
I already found a question related to this which is not quite answered (I just can´t link to it because i already used the 2 links I have with my little reputation...)
Thanks in Advance for any help!
TeX STOPPED: File ended while scanning use of \\newacronydescription\glspostdescription \space \glossaryentrynumbers {\relax \glsXpageXglsnumberformat TeX reports the error was in file:91Do you have any idea to that? – Lionade Sep 15 '16 at 07:31:Dfollowing your linked post i also addedpush @generated_exts, 'glo', 'gls', 'glg'; push @generated_exts, 'acn', 'acr', 'alg'; $clean_ext .= ' %R.ist %R.xdy';to the.latexmkrcfile to add the files the cleanup-ability of latexmk =) Great Thanks again! – Lionade Sep 15 '16 at 08:15\usepackage[xindy,toc,nonumberlist]{glossaries}it won't. This fixed it for me – GeeF Dec 04 '17 at 18:03