vue2-ace-editor
vue2-ace-editor copied to clipboard
当一行字符内容超过5000后,光标位置不准确。
通过setValue填充数据时,后台数据如何处理,可以实现,赋值后自动识别空格和回车 例如: function transformPayload (rawData) {var s={};s.test= rawData;return s;} 可以识别为: function transformPayload (rawData) { var s={}; s.test= rawData; return s; }
I'v got Editor instance by the code: ``` editorInit(e) { require("brace/ext/language_tools"); //language extension prerequsite... require("brace/theme/eclipse"); require("brace/snippets/json"); require("brace/theme/chrome"); require("brace/mode/json"); editor=e; }, ``` but when i use ``` editor.resize() ``` it doesn't...
not update content until focus when ace editor is hidden my temp solution: ```js this.$nextTick(function() { editor.resize(true) editor.renderer.updateFull() }) ``` ref: https://stackoverflow.com/a/30277601/2752670
光标位置
输入文字光标位置不对,离的很远,

Can i use ace builder in require function? like this one? require("ace-builds/src-noconflict/mode-php_laravel_blade");
I have read other issues where the tab key doesn't work with some languages. I've noticed it not working with CSS. A solution to try is to disable emmet. Is...