Fix maintenance of grammars for copied editors

This commit is contained in:
Max Brunsfeld
2016-08-08 11:07:14 -07:00
parent 1f34a8950a
commit ee2e18737e
6 changed files with 25 additions and 15 deletions

View File

@@ -1,4 +1,13 @@
/** @babel */
import {Disposable} from 'event-kit'
module.exports = Object.freeze({
name: 'Null Grammar',
scopeName: 'text.plain'
scopeName: 'text.plain',
onDidUpdate (callback) {
return new Disposable(noop)
}
})
function noop () {}