@@ -365,7 +365,7 @@ Interface.prototype._refreshLine = function() {
365
365
const lineRows = dispPos . rows ;
366
366
367
367
// cursor position
368
- const cursorPos = this . _getCursorPos ( ) ;
368
+ const cursorPos = this . getCursorPos ( ) ;
369
369
370
370
// First move to the bottom of the current line, based on cursor pos
371
371
const prevRows = this . prevRows || 0 ;
@@ -481,7 +481,7 @@ Interface.prototype._insertString = function(c) {
481
481
this . line += c ;
482
482
this . cursor += c . length ;
483
483
484
- if ( this . _getCursorPos ( ) . cols === 0 ) {
484
+ if ( this . getCursorPos ( ) . cols === 0 ) {
485
485
this . _refreshLine ( ) ;
486
486
} else {
487
487
this . _writeToOutput ( c ) ;
@@ -760,7 +760,7 @@ Interface.prototype._getDisplayPos = function(str) {
760
760
761
761
762
762
// Returns current cursor's position and line
763
- Interface . prototype . _getCursorPos = function ( ) {
763
+ Interface . prototype . getCursorPos = function ( ) {
764
764
const columns = this . columns ;
765
765
const strBeforeCursor = this . _prompt + this . line . substring ( 0 , this . cursor ) ;
766
766
const dispPos = this . _getDisplayPos (
@@ -777,21 +777,21 @@ Interface.prototype._getCursorPos = function() {
777
777
}
778
778
return { cols : cols , rows : rows } ;
779
779
} ;
780
- Interface . prototype . getCursorPos = Interface . prototype . _getCursorPos ;
780
+ Interface . prototype . _getCursorPos = Interface . prototype . getCursorPos ;
781
781
782
782
783
783
// This function moves cursor dx places to the right
784
784
// (-dx for left) and refreshes the line if it is needed
785
785
Interface . prototype . _moveCursor = function ( dx ) {
786
786
const oldcursor = this . cursor ;
787
- const oldPos = this . _getCursorPos ( ) ;
787
+ const oldPos = this . getCursorPos ( ) ;
788
788
this . cursor += dx ;
789
789
790
790
// bounds check
791
791
if ( this . cursor < 0 ) this . cursor = 0 ;
792
792
else if ( this . cursor > this . line . length ) this . cursor = this . line . length ;
793
793
794
- const newPos = this . _getCursorPos ( ) ;
794
+ const newPos = this . getCursorPos ( ) ;
795
795
796
796
// Check if cursors are in the same line
797
797
if ( oldPos . rows === newPos . rows ) {
0 commit comments