@@ -46,7 +46,8 @@ tape( 'a REPL instance supports displaying a completion preview of user-defined
46
46
'input' : istream ,
47
47
'settings' : {
48
48
'autoPage' : false ,
49
- 'syntaxHighlighting' : false
49
+ 'syntaxHighlighting' : false ,
50
+ 'autoDisableBracketedPasteOnExit' : false
50
51
}
51
52
} ;
52
53
r = repl ( opts , onClose ) ;
@@ -90,7 +91,8 @@ tape( 'a REPL instance supports displaying a completion preview for common prefi
90
91
'input' : istream ,
91
92
'settings' : {
92
93
'autoPage' : false ,
93
- 'syntaxHighlighting' : false
94
+ 'syntaxHighlighting' : false ,
95
+ 'autoDisableBracketedPasteOnExit' : false
94
96
}
95
97
} ;
96
98
r = repl ( opts , onClose ) ;
@@ -135,7 +137,8 @@ tape( 'a REPL instance supports displaying a completion preview for recognized i
135
137
'input' : istream ,
136
138
'settings' : {
137
139
'autoPage' : false ,
138
- 'syntaxHighlighting' : false
140
+ 'syntaxHighlighting' : false ,
141
+ 'autoDisableBracketedPasteOnExit' : false
139
142
}
140
143
} ;
141
144
r = repl ( opts , onClose ) ;
@@ -179,7 +182,8 @@ tape( 'a REPL instance supports displaying a completion preview when a cursor is
179
182
'input' : istream ,
180
183
'settings' : {
181
184
'autoPage' : false ,
182
- 'syntaxHighlighting' : false
185
+ 'syntaxHighlighting' : false ,
186
+ 'autoDisableBracketedPasteOnExit' : false
183
187
}
184
188
} ;
185
189
r = repl ( opts , onClose ) ;
@@ -232,7 +236,8 @@ tape( 'a REPL instance supports auto-completing a completion candidate by moving
232
236
'input' : istream ,
233
237
'settings' : {
234
238
'autoPage' : false ,
235
- 'syntaxHighlighting' : false
239
+ 'syntaxHighlighting' : false ,
240
+ 'autoDisableBracketedPasteOnExit' : false
236
241
}
237
242
} ;
238
243
r = repl ( opts , onClose ) ;
@@ -284,7 +289,8 @@ tape( 'a REPL instance supports auto-completing a completion preview and executi
284
289
'outputPrompt' : '' ,
285
290
'settings' : {
286
291
'autoPage' : false ,
287
- 'syntaxHighlighting' : false
292
+ 'syntaxHighlighting' : false ,
293
+ 'autoDisableBracketedPasteOnExit' : false
288
294
}
289
295
} ;
290
296
r = repl ( opts , onClose ) ;
@@ -337,7 +343,8 @@ tape( 'a REPL instance does not display a completion preview when no completion
337
343
'input' : istream ,
338
344
'settings' : {
339
345
'autoPage' : false ,
340
- 'syntaxHighlighting' : false
346
+ 'syntaxHighlighting' : false ,
347
+ 'autoDisableBracketedPasteOnExit' : false
341
348
}
342
349
} ;
343
350
r = repl ( opts , onClose ) ;
@@ -395,7 +402,8 @@ tape( 'a REPL instance does not display a completion preview once a user enters
395
402
'outputPrompt' : '' ,
396
403
'settings' : {
397
404
'autoPage' : false ,
398
- 'syntaxHighlighting' : false
405
+ 'syntaxHighlighting' : false ,
406
+ 'autoDisableBracketedPasteOnExit' : false
399
407
}
400
408
} ;
401
409
r = repl ( opts , onClose ) ;
0 commit comments