vue-codemirror icon indicating copy to clipboard operation
vue-codemirror copied to clipboard

@codemirror code editor component for @vuejs

Results 94 vue-codemirror issues
Sort by recently updated
recently updated
newest added

I'm having some bad rendering going on in my app. Opening the editor shows code like so. Here all text is selected, and the selection is completely off, it is...

The code I run contains a component that needs to add a canvas tag to the dom. ` - const oDiv = document.getElementById(self.table.id); - const canvas = document.createElement('canvas'); - oDiv.appendChild(canvas);...

### BUG REPORT TEMPLATE ![image](https://user-images.githubusercontent.com/13377161/97882420-917dbc80-1d5e-11eb-8a7e-02acc134026c.png) my code: html: ``` ``` data: ``` curCode:'', cmOptions:{ tabSize: 4, mode: 'application/json', theme: 'rubyblue', gutters: ['CodeMirror-lint-markers'], lineNumbers: true, line: true, lint: true }, ```...

not able to use marktext option in codemirror

i'm trying to use the findModeByExtention function from the meta.js import it: `import "codemirror/mode/meta.js"` then i'm trying to use the function and it says it's not a function. how can...

I use vue-codemirror, toggle theme is OK, but can't highlight, lint or fold. I also copy some of your examples in my project, also can't. I have trying many methods...

VueCodeMirror emits both camelCaseEvent and lowerCaseEvent when the original codemirror event is fired. As most of the events are camel-cased, vue events almost double up. When making a selection operation,...

#### Vue.js version and component version - `vue` version `2.6.11` - `vue-codemirror` version `4.0.6` #### Steps to reproduce 1. Make editor with model set: `` 2. Initially set model: `draft:...

#### Vue.js version and component version - `vue` version `2.6.11` - `vue-codemirror` version `4.0.6` #### Reproduction Link Example usage of "renderLine" event is shown here: https://jsfiddle.net/vintprox/ndgz4y9b/1/ #### Steps to reproduce...

What about highliting line? I am using scrollIntoView({ line: lineNumber}, 100) and detect line, what I want to highlight, but I couldn't find method or methods for highlighting line. I...