@@ -735,27 +735,13 @@ Interface.prototype._getDisplayPos = function(str) {
735
735
return { cols, rows } ;
736
736
} ;
737
737
738
-
739
738
// Returns current cursor's position and line
740
739
Interface . prototype . getCursorPos = function ( ) {
741
- const columns = this . columns ;
742
740
const strBeforeCursor = this . _prompt + this . line . substring ( 0 , this . cursor ) ;
743
- const dispPos = this . _getDisplayPos ( strBeforeCursor ) ;
744
- let cols = dispPos . cols ;
745
- let rows = dispPos . rows ;
746
- // If the cursor is on a full-width character which steps over the line,
747
- // move the cursor to the beginning of the next line.
748
- if ( cols + 1 === columns &&
749
- this . cursor < this . line . length &&
750
- getStringWidth ( this . line [ this . cursor ] ) > 1 ) {
751
- rows ++ ;
752
- cols = 0 ;
753
- }
754
- return { cols, rows } ;
741
+ return this . _getDisplayPos ( strBeforeCursor ) ;
755
742
} ;
756
743
Interface . prototype . _getCursorPos = Interface . prototype . getCursorPos ;
757
744
758
-
759
745
// This function moves cursor dx places to the right
760
746
// (-dx for left) and refreshes the line if it is needed.
761
747
Interface . prototype . _moveCursor = function ( dx ) {
@@ -1119,42 +1105,39 @@ function emitKeypressEvents(stream, iface = {}) {
1119
1105
stream [ ESCAPE_DECODER ] = emitKeys ( stream ) ;
1120
1106
stream [ ESCAPE_DECODER ] . next ( ) ;
1121
1107
1122
- const escapeCodeTimeout = ( ) => stream [ ESCAPE_DECODER ] . next ( '' ) ;
1108
+ const triggerEscape = ( ) => stream [ ESCAPE_DECODER ] . next ( '' ) ;
1109
+ const { escapeCodeTimeout = ESCAPE_CODE_TIMEOUT } = iface ;
1123
1110
let timeoutId ;
1124
1111
1125
- function onData ( b ) {
1112
+ function onData ( input ) {
1126
1113
if ( stream . listenerCount ( 'keypress' ) > 0 ) {
1127
- const string = stream [ KEYPRESS_DECODER ] . write ( b ) ;
1114
+ const string = stream [ KEYPRESS_DECODER ] . write ( input ) ;
1128
1115
if ( string ) {
1129
1116
clearTimeout ( timeoutId ) ;
1130
1117
1131
1118
// This supports characters of length 2.
1132
1119
iface . _sawKeyPress = charLengthAt ( string , 0 ) === string . length ;
1133
- const escapeTimeout = iface . escapeCodeTimeout || ESCAPE_CODE_TIMEOUT ;
1120
+ iface . isCompletionEnabled = false ;
1134
1121
1135
1122
let length = 0 ;
1136
1123
for ( const character of string ) {
1137
1124
length += character . length ;
1138
- if ( character === '\t' && length ! == string . length ) {
1139
- iface . isCompletionEnabled = false ;
1125
+ if ( length = == string . length ) {
1126
+ iface . isCompletionEnabled = true ;
1140
1127
}
1141
1128
1142
1129
try {
1143
1130
stream [ ESCAPE_DECODER ] . next ( character ) ;
1144
1131
// Escape letter at the tail position
1145
- if ( character === kEscape && length === string . length ) {
1146
- timeoutId = setTimeout ( escapeCodeTimeout , escapeTimeout ) ;
1132
+ if ( length === string . length && character === kEscape ) {
1133
+ timeoutId = setTimeout ( triggerEscape , escapeCodeTimeout ) ;
1147
1134
}
1148
1135
} catch ( err ) {
1149
1136
// If the generator throws (it could happen in the `keypress`
1150
1137
// event), we need to restart it.
1151
1138
stream [ ESCAPE_DECODER ] = emitKeys ( stream ) ;
1152
1139
stream [ ESCAPE_DECODER ] . next ( ) ;
1153
1140
throw err ;
1154
- } finally {
1155
- if ( iface ) {
1156
- iface . isCompletionEnabled = true ;
1157
- }
1158
1141
}
1159
1142
}
1160
1143
}
0 commit comments