Merge branch 'master' of git://github.com/aparedes/atom-beautify into aparedes-master
This commit is contained in:
commit
dedecf8cff
|
@ -114,7 +114,7 @@ beautify = ({onSave}) ->
|
|||
# console.log 'Beautify time!'
|
||||
|
||||
# Get current editor
|
||||
editor = atom.workspace.getActiveEditor()
|
||||
editor = atom.workspace.getActiveTextEditor()
|
||||
# Check if there is an active editor
|
||||
if not editor?
|
||||
return showError(new Error("Active Editor not found. "
|
||||
|
@ -211,7 +211,7 @@ beautifyDirectory = ({target}) ->
|
|||
return
|
||||
|
||||
handleSaveEvent = =>
|
||||
atom.workspace.eachEditor (editor) =>
|
||||
atom.workspace.observeTextEditors (editor) =>
|
||||
buffer = editor.getBuffer()
|
||||
plugin.unsubscribe buffer
|
||||
if atom.config.get("atom-beautify.beautifyOnSave")
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{View} = require "atom"
|
||||
{View} = require 'space-pen'
|
||||
{TextEditorView} = require 'atom-space-pen-views'
|
||||
|
||||
module.exports =
|
||||
class LoadingView extends View
|
||||
|
@ -35,4 +36,4 @@ class LoadingView extends View
|
|||
|
||||
show: =>
|
||||
if not @.hasParent()
|
||||
atom.workspaceView.appendToTop @
|
||||
atom.workspace.addTopPanel(item: @)
|
||||
|
|
|
@ -61,7 +61,8 @@
|
|||
"strip-json-comments": "^0.1.3",
|
||||
"temp": "^0.8.0",
|
||||
"typescript-formatter": "~0.1.4",
|
||||
"yaml-front-matter": "^3.2.3"
|
||||
"yaml-front-matter": "^3.2.3",
|
||||
"atom-space-pen-views": "^2.0.3"
|
||||
},
|
||||
"activationCommands": {
|
||||
"atom-workspace": [
|
||||
|
|
Loading…
Reference in New Issue