mirror of
https://github.com/atom/atom.git
synced 2026-02-15 17:15:24 -05:00
Add a kind property to Gutters
This commit is contained in:
@@ -11,6 +11,8 @@ module.exports = class Gutter {
|
||||
this.name = options && options.name
|
||||
this.priority = (options && options.priority != null) ? options.priority : DefaultPriority
|
||||
this.visible = (options && options.visible != null) ? options.visible : true
|
||||
this.kind = (options && options.kind != null) ? options.kind : 'decorated'
|
||||
this.labelFn = options && options.labelFn
|
||||
|
||||
this.emitter = new Emitter()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user