surmon-china / vue-codemirror

@codemirror code editor component for @vuejs
https://github.surmon.me/vue-codemirror
MIT License
3.28k stars 382 forks source link

How can I add a plugin like Emmet to vue-codemirror? #70

Open SimonLeeee opened 6 years ago

SimonLeeee commented 6 years ago

I actually found a way https://github.com/sergeche/codemirror-movie, but it seems not supporting the .Vue file format. Can someone tell me how to do that? Thank you.

fco4 commented 6 years ago

I waiting for answer to. I can't to find how to works with fromTextArea function like this:

var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
    mode : 'text/html',

    // define Emmet output profile
    profile: 'xhtml'
});
emmetCodeMirror(editor);
surmon-china commented 6 years ago

Sorry, since Vue-Codemirror encapsulates the container, it cannot support codemirror-movie on the basis of Vue-Codemirror itself, but you can make codemirror-movie work without Vue-Codemirror.

fco4 commented 6 years ago

Thank you, I did so.