SublimeText / LaTeXTools

LaTeX plugin for Sublime Text
https://latextools.readthedocs.io/
2.01k stars 366 forks source link

TEXroot: Allow path expansion #1499

Open sinus-x opened 3 years ago

sinus-x commented 3 years ago

LaTeXtools does not recognise ~ as path alias and (probably) treats it as just a character. Because of that, full path is neccesary:

"settings": {
  "TEXroot": "/home/user/Projects/project/main.tex"
}

Would it be possible to do just

"settings": {
  "TEXroot": "~/Projects/project/main.tex"
}