Changed rustfmt beautifier to use context.filePath

This commit is contained in:
Leonard Hecker 2016-06-24 00:13:47 +02:00
parent 458fdb62e2
commit 5cee65780f
1 changed files with 2 additions and 5 deletions

View File

@ -15,11 +15,8 @@ module.exports = class Rustfmt extends Beautifier
Rust: true Rust: true
} }
beautify: (text, language, options) -> beautify: (text, language, options, context) ->
editor = atom.workspace.getActivePaneItem() cwd = context.filePath and path.dirname context.filePath
buffer = editor.getBuffer?()
filePath = buffer.getPath?()
cwd = if filePath then path.dirname filePath else undefined
program = options.rustfmt_path or "rustfmt" program = options.rustfmt_path or "rustfmt"
help = { help = {
link: "https://github.com/nrc/rustfmt" link: "https://github.com/nrc/rustfmt"