vue2-ace-editor icon indicating copy to clipboard operation
vue2-ace-editor copied to clipboard

Results 17 vue2-ace-editor issues
Sort by recently updated
recently updated
newest added

当一行字符内容超过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

later

输入文字光标位置不对,离的很远,

![38e189f11e8aea8a24ec27d552ea1ad](https://user-images.githubusercontent.com/44357333/126583422-6327ced0-819e-4bdc-bb08-19cdb887fb15.png)

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...