Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using code mirror to display, highlight and edit xml in a web page but I am having a problem with the cursor position being offset from the insert position so that if you delete a character from where the blinking cursor is, a character before the one you would expect gets deleted instead. I am assuming its a css clash with my current page because it works well outside my page, but cant find the clash anywhere. Has anyone had similar issues or know what to do?

share|improve this question

3 Answers

up vote 3 down vote accepted

Further investigation shows that the page had padding set on all divs embedded in fieldsets which was the cause of the problem.

share|improve this answer

Sometimes, also, below italic or bold -containing lines (depending on your OS and browser), cursor has a wrong vertical position up to 90% of a line. It can be easily fixed by setting, e.g.

.CodeMirror pre {
    height:15px;
}

anywhere in your CSS stylesheets. This also provides you with a way to control line height, if you find lines of code showing too close to each other.

share|improve this answer

The following lines fixed the issue for me:

.CodeMirror pre {
    white-space: pre-wrap;
    word-break: break-all;
    word-wrap: break-word;
}

I'm using lineWrapping: true in my CodeMirror configuration. Setting that to false works as well.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.