@@ -48,7 +48,9 @@ function Interface(input, output, completer, terminal) {
48
48
}
49
49
historySize = historySize || kHistorySize ;
50
50
51
- if ( completer && typeof completer !== 'function' ) {
51
+ completer = completer || function ( ) { return [ ] ; } ;
52
+
53
+ if ( typeof completer !== 'function' ) {
52
54
throw new TypeError ( 'Argument \'completer\' must be a function' ) ;
53
55
}
54
56
@@ -71,11 +73,9 @@ function Interface(input, output, completer, terminal) {
71
73
this . historySize = historySize ;
72
74
73
75
// Check arity, 2 - for async, 1 for sync
74
- if ( typeof completer === 'function' ) {
75
- this . completer = completer . length === 2 ? completer : function ( v , cb ) {
76
- cb ( null , completer ( v ) ) ;
77
- } ;
78
- }
76
+ this . completer = completer . length === 2 ? completer : function ( v , callback ) {
77
+ callback ( null , completer ( v ) ) ;
78
+ } ;
79
79
80
80
this . setPrompt ( '> ' ) ;
81
81
@@ -345,6 +345,9 @@ Interface.prototype._normalWrite = function(b) {
345
345
} ;
346
346
347
347
Interface . prototype . _insertString = function ( c ) {
348
+ //BUG: Problem when adding tabs with following content.
349
+ // Perhaps the bug is in _refreshLine(). Not sure.
350
+ // A hack would be to insert spaces instead of literal '\t'.
348
351
if ( this . cursor < this . line . length ) {
349
352
var beg = this . line . slice ( 0 , this . cursor ) ;
350
353
var end = this . line . slice ( this . cursor , this . line . length ) ;
@@ -837,6 +840,10 @@ Interface.prototype._ttyWrite = function(s, key) {
837
840
this . _deleteRight ( ) ;
838
841
break ;
839
842
843
+ case 'tab' : // tab completion
844
+ this . _tabComplete ( ) ;
845
+ break ;
846
+
840
847
case 'left' :
841
848
this . _moveCursor ( - 1 ) ;
842
849
break ;
@@ -861,14 +868,6 @@ Interface.prototype._ttyWrite = function(s, key) {
861
868
this . _historyNext ( ) ;
862
869
break ;
863
870
864
- case 'tab' :
865
- // If tab completion enabled, do that...
866
- if ( typeof this . completer === 'function' ) {
867
- this . _tabComplete ( ) ;
868
- break ;
869
- }
870
- // falls through
871
-
872
871
default :
873
872
if ( s instanceof Buffer )
874
873
s = s . toString ( 'utf-8' ) ;
0 commit comments