Skip to content

Commit eaa6027

Browse files
committed
Auto-generated commit
1 parent 3828fb9 commit eaa6027

File tree

5 files changed

+20
-8
lines changed

5 files changed

+20
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,7 @@ A total of 9 people contributed to this release. Thank you to the following cont
271271

272272
<details>
273273

274+
- [`243ab4d`](https://github.com/stdlib-js/stdlib/commit/243ab4d0fbd85acb68e4d394fac8d84011621a44) - **test:** fix failing tests in the REPL [(#2516)](https://github.com/stdlib-js/stdlib/pull/2516) _(by Snehil Shah)_
274275
- [`350aa53`](https://github.com/stdlib-js/stdlib/commit/350aa5304430dc8b29acbfcecd9e23f9780bd5a1) - **docs:** update REPL namespace documentation [(#2515)](https://github.com/stdlib-js/stdlib/pull/2515) _(by stdlib-bot, Athan Reines)_
275276
- [`7ba179c`](https://github.com/stdlib-js/stdlib/commit/7ba179c7f5084a9b39e22282b02e756c9671d6d8) - **feat:** add bracketed-paste mode in the REPL [(#2502)](https://github.com/stdlib-js/stdlib/pull/2502) _(by Snehil Shah, Athan Reines)_
276277
- [`fc67e61`](https://github.com/stdlib-js/stdlib/commit/fc67e61cc8ee361df87fdceae53d32baaa4b54ff) - **docs:** update REPL namespace documentation [(#2511)](https://github.com/stdlib-js/stdlib/pull/2511) _(by stdlib-bot, Athan Reines)_

test/integration/test.auto_page.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ function defaultSettings() {
5858
return {
5959
'autoDeletePairs': false,
6060
'autoClosePairs': false,
61+
'autoDisableBracketedPasteOnExit': false,
6162
'completionPreviews': false,
6263
'syntaxHighlighting': false,
6364
'autoPage': true

test/integration/test.completer_engine.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ function defaultSettings() {
4545
return {
4646
'autoDeletePairs': false,
4747
'autoClosePairs': false,
48+
'autoDisableBracketedPasteOnExit': false,
4849
'completionPreviews': false,
4950
'syntaxHighlighting': false,
5051
'autoPage': false

test/integration/test.completion_previews.js

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ tape( 'a REPL instance supports displaying a completion preview of user-defined
4646
'input': istream,
4747
'settings': {
4848
'autoPage': false,
49-
'syntaxHighlighting': false
49+
'syntaxHighlighting': false,
50+
'autoDisableBracketedPasteOnExit': false
5051
}
5152
};
5253
r = repl( opts, onClose );
@@ -90,7 +91,8 @@ tape( 'a REPL instance supports displaying a completion preview for common prefi
9091
'input': istream,
9192
'settings': {
9293
'autoPage': false,
93-
'syntaxHighlighting': false
94+
'syntaxHighlighting': false,
95+
'autoDisableBracketedPasteOnExit': false
9496
}
9597
};
9698
r = repl( opts, onClose );
@@ -135,7 +137,8 @@ tape( 'a REPL instance supports displaying a completion preview for recognized i
135137
'input': istream,
136138
'settings': {
137139
'autoPage': false,
138-
'syntaxHighlighting': false
140+
'syntaxHighlighting': false,
141+
'autoDisableBracketedPasteOnExit': false
139142
}
140143
};
141144
r = repl( opts, onClose );
@@ -179,7 +182,8 @@ tape( 'a REPL instance supports displaying a completion preview when a cursor is
179182
'input': istream,
180183
'settings': {
181184
'autoPage': false,
182-
'syntaxHighlighting': false
185+
'syntaxHighlighting': false,
186+
'autoDisableBracketedPasteOnExit': false
183187
}
184188
};
185189
r = repl( opts, onClose );
@@ -232,7 +236,8 @@ tape( 'a REPL instance supports auto-completing a completion candidate by moving
232236
'input': istream,
233237
'settings': {
234238
'autoPage': false,
235-
'syntaxHighlighting': false
239+
'syntaxHighlighting': false,
240+
'autoDisableBracketedPasteOnExit': false
236241
}
237242
};
238243
r = repl( opts, onClose );
@@ -284,7 +289,8 @@ tape( 'a REPL instance supports auto-completing a completion preview and executi
284289
'outputPrompt': '',
285290
'settings': {
286291
'autoPage': false,
287-
'syntaxHighlighting': false
292+
'syntaxHighlighting': false,
293+
'autoDisableBracketedPasteOnExit': false
288294
}
289295
};
290296
r = repl( opts, onClose );
@@ -337,7 +343,8 @@ tape( 'a REPL instance does not display a completion preview when no completion
337343
'input': istream,
338344
'settings': {
339345
'autoPage': false,
340-
'syntaxHighlighting': false
346+
'syntaxHighlighting': false,
347+
'autoDisableBracketedPasteOnExit': false
341348
}
342349
};
343350
r = repl( opts, onClose );
@@ -395,7 +402,8 @@ tape( 'a REPL instance does not display a completion preview once a user enters
395402
'outputPrompt': '',
396403
'settings': {
397404
'autoPage': false,
398-
'syntaxHighlighting': false
405+
'syntaxHighlighting': false,
406+
'autoDisableBracketedPasteOnExit': false
399407
}
400408
};
401409
r = repl( opts, onClose );

test/integration/test.syntax_highlighting.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ function defaultSettings() {
6969
return {
7070
'autoClosePairs': false,
7171
'autoDeletePairs': false,
72+
'autoDisableBracketedPasteOnExit': false,
7273
'autoPage': false,
7374
'completionPreviews': false,
7475
'syntaxHighlighting': true

0 commit comments

Comments
 (0)