VDBSimpleConsoleView.st
changeset 176 a3a4fe982cf9
parent 170 cd9615ebe6a9
child 178 5d1c3e5fab6b
equal deleted inserted replaced
175:a304c250e889 176:a3a4fe982cf9
    91             insertion := completion copyFrom: bufferPosition.
    91             insertion := completion copyFrom: bufferPosition.
    92             buffer := (buffer copyTo: bufferPosition - 1) , insertion , (buffer copyFrom: bufferPosition).
    92             buffer := (buffer copyTo: bufferPosition - 1) , insertion , (buffer copyFrom: bufferPosition).
    93             self insertStringAtCursor: insertion.
    93             self insertStringAtCursor: insertion.
    94             bufferPosition := bufferPosition + insertion size.
    94             bufferPosition := bufferPosition + insertion size.
    95         ] ifFalse:[
    95         ] ifFalse:[
    96             self breakpoint: #jv
    96             self breakPoint: #jv
    97         ]
    97         ].
       
    98         matches size > 1 ifTrue:[ 
       
    99             self flash.
       
   100         ].
    98     ]
   101     ]
    99 
   102 
   100     "Created: / 12-06-2019 / 18:28:09 / jv"
   103     "Created: / 12-06-2019 / 18:28:09 / jv"
   101     "Modified: / 12-06-2019 / 19:54:15 / jv"
   104     "Modified: / 25-06-2019 / 17:02:28 / jv"
   102 !
   105 !
   103 
   106 
   104 completionsShow
   107 completionsShow
   105     "Shows completion candidates"
   108     "Shows completion candidates"
   106 
   109