Ace Editor 长文本在注释中换行

Ace Editor Long Text Wrap in the Annotation

我正在尝试通过 ace_editor 的注释显示长文本。 gutter_cell 中显示注释的图标。我的问题是:

让所有文本都可见的最佳换行方式是什么?

我尝试使用 html 但没有成功。



this.currentEditor.session.setAnnotations([{
      row: this.currentLine - 1,
      column: 0,
      text: message, //<---- very long text
      type: "info"
}]);

尝试像这样添加 css

.ace_tooltip {
    max-width:50px;
    word-wrap:break-word!important;
    white-space: pre-wrap!important;
}