ymacs icon indicating copy to clipboard operation
ymacs copied to clipboard

Current line highlight don't contain whole line if it's longer then the width of editor

Open jcubic opened this issue 9 years ago • 2 comments

if you have very long line that and it's not fiting into editor width when you move cursor to the right only part of the line is higlighted as current line.

This fixed the issue:

.Ymacs-frame-content {
    float: left;
}

jcubic avatar Dec 19 '15 14:12 jcubic

This will not fix the issue when line is shorter.

jcubic avatar Dec 20 '15 17:12 jcubic

This fixed the issue:

.Ymacs-frame-content {
    display: inline-block;
    min-width: 100%;
}

jcubic avatar Dec 20 '15 17:12 jcubic