add `currentFile`

pull/1/head
yann300 7 years ago
parent 67e5f2a67b
commit 75a98c3e33
  1. 5
      src/app/files/fileManager.js
  2. 2
      src/app/plugin/pluginAPI.js

@ -79,6 +79,11 @@ class FileManager {
return null
}
currentFile () {
var self = this
return self._deps.config.get('currentFile')
}
currentPath () {
var self = this
var currentFile = self._deps.config.get('currentFile')

@ -67,7 +67,7 @@ module.exports = (pluginManager, fileProviders, fileManager, compiler, udapp) =>
},
editor: {
getCurrentFile: (mod, cb) => {
var path = fileManager.currentPath()
var path = fileManager.currentFile()
if (!path) {
cb('no file selected')
} else {

Loading…
Cancel
Save