如何在 Ace 编辑器中禁用自动括号关闭?
How can I disable auto bracket closing in Ace editor?
我正在使用 ace 开发协作代码编辑器,每次我放入一个左括号和一个右括号,光标到达末尾。请告诉我是否有办法禁用括号的自动关闭。
谢谢。
这是我目前尝试过的方法
<script src="/ext-language_tools.js"></script>
<script>
$(document).ready(() => {
var editor = ace.edit("editor");
editor.setTheme("ace/theme/github");
editor.session.setMode("ace/mode/javascript");
editor.setOptions({
fontSize: "15pt",
enableBasicAutocompletion: false,
enableLiveAutocompletion: false
});
</script>
使用behavioursEnabled: false
选项https://github.com/ajaxorg/ace/wiki/Configuring-Ace
我正在使用 ace 开发协作代码编辑器,每次我放入一个左括号和一个右括号,光标到达末尾。请告诉我是否有办法禁用括号的自动关闭。
谢谢。
这是我目前尝试过的方法
<script src="/ext-language_tools.js"></script>
<script>
$(document).ready(() => {
var editor = ace.edit("editor");
editor.setTheme("ace/theme/github");
editor.session.setMode("ace/mode/javascript");
editor.setOptions({
fontSize: "15pt",
enableBasicAutocompletion: false,
enableLiveAutocompletion: false
});
</script>
使用behavioursEnabled: false
选项https://github.com/ajaxorg/ace/wiki/Configuring-Ace