Megatron King
Megatron King
> 调试tab固定没关系啊,但是不要固定叫"调试"这个名字就好了,可以用个指示灯表示激活状态,不然"调试"这个名字不是固定的某一个会话,有点别扭. 其实我也没想到合适的名字。
@CAI5201314 感谢建议,确实应该分行。
Flutter 3.16.6 has this issue too.
When you open the find panel and focus on find keyword input field, the editor will lose the focus. The shortcuts should bind to the focus of keyword input field...
@ellie-k-nam Hello, thanks for your feedback. In fact, this is a known issue. Syntax highlighting requires a large number of regular matches, but the editor does not cache the results,...
@sgehrman Hi, can you attach the text as file here?
Thank you very much for your reply, but I haven't been able to reproduce the stuck issue. I noticed that when scrolling down to line 71, there will be an...
可以通过`CodeLineSpanBuilder`构建特别的样式,请参考`CodeLineEditingController`的构造函数。
1. Editor的数据结构不包含额外的信息,例如错误、警告这些,这些需要你自己维护一个数据结构,在SpanBuilder里面使用。 2. 不存在刷新某一行这样的设计,整个Editor就是是一个RenderObject,只能整体刷新(可以使用controller的`forceRepaint`函数)。因为当你某一行的样式发生变化时,文字的渲染尺寸很可能发生变化,会引起后续文字渲染位置的变更,所以整体内容重新刷新是一个比较容易的处理方式。
@onism0106 我不确定是哪里的问题,但是理论上可以加上划线这些样式。