Merge branch 'master' of github.com:Glavin001/atom-beautify

This commit is contained in:
Glavin Wiechert 2017-07-14 09:39:53 -03:00
commit 7864205a3f
1 changed files with 1 additions and 1 deletions

View File

@ -59,11 +59,11 @@ module.exports = class LatexBeautify extends Beautifier
.then((dirPath)=> .then((dirPath)=>
@setUpDir(dirPath, text, @buildConfigFile(options)) @setUpDir(dirPath, text, @buildConfigFile(options))
run = @run "latexindent", [ run = @run "latexindent", [
"-o" #Output to the same location as file, -w creates a backup file, whereas this does not
"-s" #Silent mode "-s" #Silent mode
"-l" #Tell latexindent we have a local configuration file "-l" #Tell latexindent we have a local configuration file
"-c=" + dirPath #Tell latexindent to place the log file in this directory "-c=" + dirPath #Tell latexindent to place the log file in this directory
@texFile @texFile
"-o" #Output to the same location as file, -w creates a backup file, whereas this does not
@texFile @texFile
], help: { ], help: {
link: "https://github.com/cmhughes/latexindent.pl" link: "https://github.com/cmhughes/latexindent.pl"