Richard Stein
Richard Stein
When you press `tab` Sublime Text searches for the a `tab`-keybinding with the matching context and executes the corresponding command. If the kbd usually works and something else is executes...
Yeah snippets are slighty different, because you trigger them without the auto-complete popup open. The default behavior of ST is to insert the best completion (i.e. insert the snippet) if...
You can add this keybinding to expand on alt+e (expanding on escape, enter, ... also overwrites a lot of other behaviors as tab does): ```js { "keys": ["alt+e"], "command": "insert_best_completion",...
tab has a lot of behaviors. If you really want to have that behavior with tab I suggest to open *Preferences > Keybindings* and copy all keybinding with the key...
LaTeXTools just calls the compilation commands and doesn't compile the files itself. You can see the actual commands in the sublime text console `View > Show Console`. You may try...
It seems like you have selected the builder in the build panel. Use `C-shift-b` to select the builder, this takes precedence over the settings.
We do have 2 builders (Basic Builder and Traditional Builder) and each of the builder supports 3 engines (pdflatex, xelatex, luatex). - The traditional builder calls the engines using latexmk...
I would open the ST console `View > Show Console` and check the executed commands. The Basic Builder should just call pdflatex with some options.
Everything looks fine, but I am hesitating a little bit with adding additional C-l keybindings. Some day we may want to use that for something else.
In the current mechanism it is either hover popup or phantom. Since images are static a hover popup seems to be the best option there. However math should be previewed...