@@ -136,14 +136,16 @@ function setupPreview(repl, contextSymbol, bufferSymbol, active) {
136
136
137
137
function getPreviewPos ( ) {
138
138
const displayPos = repl . _getDisplayPos ( `${ repl . _prompt } ${ repl . line } ` ) ;
139
- const cursorPos = repl . getCursorPos ( ) ;
140
- const rows = 1 + displayPos . rows - cursorPos . rows ;
141
- return { rows, cols : cursorPos . cols } ;
139
+ const cursorPos = repl . line . length !== repl . cursor ?
140
+ repl . getCursorPos ( ) :
141
+ displayPos ;
142
+ return { displayPos, cursorPos } ;
142
143
}
143
144
144
145
const clearPreview = ( ) => {
145
146
if ( inputPreview !== null ) {
146
- const { rows } = getPreviewPos ( ) ;
147
+ const { displayPos, cursorPos } = getPreviewPos ( ) ;
148
+ const rows = displayPos . rows - cursorPos . rows + 1 ;
147
149
moveCursor ( repl . output , 0 , rows ) ;
148
150
clearLine ( repl . output ) ;
149
151
moveCursor ( repl . output , 0 , - rows ) ;
@@ -153,12 +155,25 @@ function setupPreview(repl, contextSymbol, bufferSymbol, active) {
153
155
if ( completionPreview !== null ) {
154
156
// Prevent cursor moves if not necessary!
155
157
const move = repl . line . length !== repl . cursor ;
158
+ let pos , rows ;
156
159
if ( move ) {
157
- cursorTo ( repl . output , repl . _prompt . length + repl . line . length ) ;
160
+ pos = getPreviewPos ( ) ;
161
+ cursorTo ( repl . output , pos . displayPos . cols ) ;
162
+ rows = pos . displayPos . rows - pos . cursorPos . rows ;
163
+ moveCursor ( repl . output , 0 , rows ) ;
164
+ }
165
+ const totalLine = `${ repl . _prompt } ${ repl . line } ${ completionPreview } ` ;
166
+ const newPos = repl . _getDisplayPos ( totalLine ) ;
167
+ // Minimize work for the terminal. It is enough to clear the right part of
168
+ // the current line in case the preview is visible on a single line.
169
+ if ( newPos . rows === 0 || ( pos && pos . displayPos . rows === newPos . rows ) ) {
170
+ clearLine ( repl . output , 1 ) ;
171
+ } else {
172
+ clearScreenDown ( repl . output ) ;
158
173
}
159
- clearLine ( repl . output , 1 ) ;
160
174
if ( move ) {
161
- cursorTo ( repl . output , repl . _prompt . length + repl . cursor ) ;
175
+ cursorTo ( repl . output , pos . cursorPos . cols ) ;
176
+ moveCursor ( repl . output , 0 , - rows ) ;
162
177
}
163
178
completionPreview = null ;
164
179
}
@@ -198,17 +213,6 @@ function setupPreview(repl, contextSymbol, bufferSymbol, active) {
198
213
199
214
const suffix = prefix . slice ( completeOn . length ) ;
200
215
201
- const totalLength = repl . line . length +
202
- repl . _prompt . length +
203
- suffix . length +
204
- ( repl . useColors ? 0 : 4 ) ;
205
-
206
- // TODO(BridgeAR): Fix me. This should not be necessary. See similar
207
- // comment in `showPreview()`.
208
- if ( totalLength > repl . columns ) {
209
- return ;
210
- }
211
-
212
216
if ( insertPreview ) {
213
217
repl . _insertString ( suffix ) ;
214
218
return ;
@@ -220,11 +224,17 @@ function setupPreview(repl, contextSymbol, bufferSymbol, active) {
220
224
`\u001b[90m${ suffix } \u001b[39m` :
221
225
` // ${ suffix } ` ;
222
226
227
+ const { cursorPos, displayPos } = getPreviewPos ( ) ;
223
228
if ( repl . line . length !== repl . cursor ) {
224
- cursorTo ( repl . output , repl . _prompt . length + repl . line . length ) ;
229
+ cursorTo ( repl . output , displayPos . cols ) ;
230
+ moveCursor ( repl . output , 0 , displayPos . rows - cursorPos . rows ) ;
225
231
}
226
232
repl . output . write ( result ) ;
227
- cursorTo ( repl . output , repl . _prompt . length + repl . cursor ) ;
233
+ cursorTo ( repl . output , cursorPos . cols ) ;
234
+ const totalLine = `${ repl . _prompt } ${ repl . line } ${ suffix } ` ;
235
+ const newPos = repl . _getDisplayPos ( totalLine ) ;
236
+ const rows = newPos . rows - cursorPos . rows - ( newPos . cols === 0 ? 1 : 0 ) ;
237
+ moveCursor ( repl . output , 0 , - rows ) ;
228
238
} ) ;
229
239
}
230
240
@@ -288,6 +298,7 @@ function setupPreview(repl, contextSymbol, bufferSymbol, active) {
288
298
} , ( ) => callback ( new ERR_INSPECTOR_NOT_AVAILABLE ( ) ) ) ;
289
299
}
290
300
301
+ // TODO(BridgeAR): Prevent previews while pasting code.
291
302
const showPreview = ( ) => {
292
303
// Prevent duplicated previews after a refresh.
293
304
if ( inputPreview !== null ) {
@@ -373,12 +384,12 @@ function setupPreview(repl, contextSymbol, bufferSymbol, active) {
373
384
`\u001b[90m${ inspected } \u001b[39m` :
374
385
`// ${ inspected } ` ;
375
386
376
- const { rows : previewRows , cols : cursorCols } = getPreviewPos ( ) ;
377
- if ( previewRows !== 1 )
378
- moveCursor ( repl . output , 0 , previewRows - 1 ) ;
387
+ const { cursorPos , displayPos } = getPreviewPos ( ) ;
388
+ const rows = displayPos . rows - cursorPos . rows ;
389
+ moveCursor ( repl . output , 0 , rows ) ;
379
390
const { cols : resultCols } = repl . _getDisplayPos ( result ) ;
380
391
repl . output . write ( `\n${ result } ` ) ;
381
- moveCursor ( repl . output , cursorCols - resultCols , - previewRows ) ;
392
+ moveCursor ( repl . output , cursorPos . cols - resultCols , - rows - 1 ) ;
382
393
} ) ;
383
394
} ;
384
395
@@ -452,8 +463,8 @@ function setupReverseSearch(repl) {
452
463
// Reset the already matched set in case the direction is changed. That
453
464
// way it's possible to find those entries again.
454
465
alreadyMatched . clear ( ) ;
466
+ dir = keyName ;
455
467
}
456
- dir = keyName ;
457
468
return true ;
458
469
}
459
470
@@ -598,16 +609,14 @@ function setupReverseSearch(repl) {
598
609
599
610
// Clear screen and write the current repl.line before exiting.
600
611
cursorTo ( repl . output , promptPos . cols ) ;
601
- if ( promptPos . rows !== 0 )
602
- moveCursor ( repl . output , 0 , promptPos . rows ) ;
612
+ moveCursor ( repl . output , 0 , promptPos . rows ) ;
603
613
clearScreenDown ( repl . output ) ;
604
614
if ( repl . line !== '' ) {
605
615
repl . output . write ( repl . line ) ;
606
616
if ( repl . line . length !== repl . cursor ) {
607
617
const { cols, rows } = repl . getCursorPos ( ) ;
608
618
cursorTo ( repl . output , cols ) ;
609
- if ( rows !== 0 )
610
- moveCursor ( repl . output , 0 , rows ) ;
619
+ moveCursor ( repl . output , 0 , rows ) ;
611
620
}
612
621
}
613
622
}
0 commit comments