防止 ace 编辑器在光标上居中滚动?

Prevent ace editor to center scroll on the cursor?

即使光标不在屏幕外,ace 编辑器也会将视图(水平滚动)置于光标的中心。

这发生在调整 ace 编辑器容器的大小之后。

如何防止ace编辑器在不需要时将光标居中?

This example说明了问题。

要使用新宽度更新 ace 编辑器,请使用 editor.resize():

$(window).mouseup ()->
  if dragging
     editor.resize()
  dragging = false
  return