This repository was archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathexpression.js
45 lines (40 loc) · 1.5 KB
/
expression.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
module.exports = class Expression {
constructor (identifier) {
this.identifier = identifier
}
expand (editor, cursor, tabstops, variables) {
// Check whether we are a tabstop or a variable
Number.isInteger(this.identifier)
// Create a tabstop marker at our position
? this.mark({ tabstops, start: cursor.getBufferPosition() })
// Check whether we are a know variable or not
: this.identifier in variables
// Insert the variables value
? this.insert(editor, cursor, variables[this.identifier])
// Insert 'this.identifier' and create a tabstop marker with it selected
: this.mark({ tabstops, ...this.insert(editor, cursor, this.identifier) })
}
insert (editor, cursor, value) {
return editor.getBuffer().insert(cursor.getBufferPosition(), value)
}
activate (editor, cursor, stop, mirror) {
if (mirror === stop) {
cursor.selection.setBufferRange(stop.getBufferRange())
const subscription = cursor.onDidChangePosition(({ newBufferPosition }) => {
if (!stop.getBufferRange().containsPoint(newBufferPosition)) {
stop.destroy()
subscription.dispose()
}
})
} else {
editor.decorateMarker(mirror, { type: 'highlight' })
stop.onDidDestroy(() => mirror.destroy())
}
}
mark ({ tabstops, start, end = start, exclusive = true, expression = this }) {
tabstops.markBufferRange({ start, end }, { exclusive }).setProperties({ expression })
}
toString () {
return ''
}
}