-
Notifications
You must be signed in to change notification settings - Fork 128
/
devreplay.json
94 lines (94 loc) · 1.4 KB
/
devreplay.json
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[
{
"before": [
"assert.equal"
],
"after": [
"assert.strictEqual"
]
},
{
"before": [
"show(${1:column}, ${2:preservalFocus})"
],
"after": [
"show(${2:preservalFocus})"
]
},
{
"before": [
"editor.hide()"
],
"after": [
"workbench.action.closeActiveEditor()"
]
},
{
"before": [
"editor.show(${1:column})"
],
"after": [
"window.showTextDocument()"
]
},
{
"before": [
"MarkedString"
],
"after": [
"MarkdownString"
]
},
{
"before": [
"withScmProgress"
],
"after": [
"withProgress"
]
},
{
"before": [
"workspace.rootPath"
],
"after": [
"workspace.workspaceFolders![0].uri.path"
]
},
{
"before": [
"scm.inputBox"
],
"after": [
"SourceControl.inputBox"
]
},
{
"before": [
"$0 $1 = workspace.getConfiguration('$2');"
],
"after": [
"export function $1() {",
" return workspace.getConfiguration('$2');",
"}"
],
"description": "It is fixed on https://github.com/REditorSupport/vscode-R/pull/301",
"severity": "Error"
},
{
"before": [
"workspace.getConfiguration('$1').get"
],
"after": [
"config().get"
]
},
{
"before": [
"delay(8)"
],
"after": [
"delay(rtermSendDelay)"
]
}
]