【发布时间】:2017-05-25 19:52:38
【问题描述】:
我找不到答案,您能帮我解决以下问题吗?
我想隐藏 ace 编辑器的缩进指南。以下不起作用,其他一切都起作用:
editor.setDisplayIndentGuides(false);
上面的选项没有记录,见这里: https://ace.c9.io/#nav=api&api=editor
有什么想法吗?谢谢。
【问题讨论】:
标签: editor ace-editor
我找不到答案,您能帮我解决以下问题吗?
我想隐藏 ace 编辑器的缩进指南。以下不起作用,其他一切都起作用:
editor.setDisplayIndentGuides(false);
上面的选项没有记录,见这里: https://ace.c9.io/#nav=api&api=editor
有什么想法吗?谢谢。
【问题讨论】:
标签: editor ace-editor
改用editor.setOption
editor.setOption("displayIndentGuides", false)
【讨论】: