@@ -130,9 +130,11 @@ function Interface(input, output, completer, terminal) {
130
130
131
131
// Check arity, 2 - for async, 1 for sync
132
132
if ( typeof completer === 'function' ) {
133
- this . completer = completer . length === 2 ? completer : function ( v , cb ) {
134
- cb ( null , completer ( v ) ) ;
135
- } ;
133
+ this . completer = completer . length === 2 ?
134
+ completer :
135
+ function completerWrapper ( v , cb ) {
136
+ cb ( null , completer ( v ) ) ;
137
+ } ;
136
138
}
137
139
138
140
this . setPrompt ( prompt ) ;
@@ -175,15 +177,23 @@ function Interface(input, output, completer, terminal) {
175
177
}
176
178
177
179
if ( ! this . terminal ) {
178
- input . on ( 'data' , ondata ) ;
179
- input . on ( 'end' , onend ) ;
180
- self . once ( 'close' , function ( ) {
180
+ function onSelfCloseWithoutTerminal ( ) {
181
181
input . removeListener ( 'data' , ondata ) ;
182
182
input . removeListener ( 'end' , onend ) ;
183
- } ) ;
184
- this . _decoder = new StringDecoder ( 'utf8' ) ;
183
+ }
185
184
185
+ input . on ( 'data' , ondata ) ;
186
+ input . on ( 'end' , onend ) ;
187
+ self . once ( 'close' , onSelfCloseWithoutTerminal ) ;
188
+ this . _decoder = new StringDecoder ( 'utf8' ) ;
186
189
} else {
190
+ function onSelfCloseWithTerminal ( ) {
191
+ input . removeListener ( 'keypress' , onkeypress ) ;
192
+ input . removeListener ( 'end' , ontermend ) ;
193
+ if ( output !== null && output !== undefined ) {
194
+ output . removeListener ( 'resize' , onresize ) ;
195
+ }
196
+ }
187
197
188
198
emitKeypressEvents ( input , this ) ;
189
199
@@ -206,13 +216,7 @@ function Interface(input, output, completer, terminal) {
206
216
if ( output !== null && output !== undefined )
207
217
output . on ( 'resize' , onresize ) ;
208
218
209
- self . once ( 'close' , function ( ) {
210
- input . removeListener ( 'keypress' , onkeypress ) ;
211
- input . removeListener ( 'end' , ontermend ) ;
212
- if ( output !== null && output !== undefined ) {
213
- output . removeListener ( 'resize' , onresize ) ;
214
- }
215
- } ) ;
219
+ self . once ( 'close' , onSelfCloseWithTerminal ) ;
216
220
}
217
221
218
222
input . resume ( ) ;
@@ -460,7 +464,7 @@ Interface.prototype._tabComplete = function(lastKeypressWasTab) {
460
464
var self = this ;
461
465
462
466
self . pause ( ) ;
463
- self . completer ( self . line . slice ( 0 , self . cursor ) , function ( err , rv ) {
467
+ self . completer ( self . line . slice ( 0 , self . cursor ) , function onComplete ( err , rv ) {
464
468
self . resume ( ) ;
465
469
466
470
if ( err ) {
@@ -474,7 +478,7 @@ Interface.prototype._tabComplete = function(lastKeypressWasTab) {
474
478
// Apply/show completions.
475
479
if ( lastKeypressWasTab ) {
476
480
self . _writeToOutput ( '\r\n' ) ;
477
- var width = completions . reduce ( function ( a , b ) {
481
+ var width = completions . reduce ( function completionReducer ( a , b ) {
478
482
return a . length > b . length ? a : b ;
479
483
} ) . length + 2 ; // 2 space padding
480
484
var maxColumns = Math . floor ( self . columns / width ) ;
@@ -495,7 +499,9 @@ Interface.prototype._tabComplete = function(lastKeypressWasTab) {
495
499
}
496
500
497
501
// If there is a common prefix to all matches, then apply that portion.
498
- var f = completions . filter ( function ( e ) { if ( e ) return e ; } ) ;
502
+ var f = completions . filter ( function completionFilter ( e ) {
503
+ if ( e ) return e ;
504
+ } ) ;
499
505
var prefix = commonPrefix ( f ) ;
500
506
if ( prefix . length > completeOn . length ) {
501
507
self . _insertString ( prefix . slice ( completeOn . length ) ) ;
0 commit comments