ymacs
ymacs copied to clipboard
Current line highlight don't contain whole line if it's longer then the width of editor
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;
}
This will not fix the issue when line is shorter.
This fixed the issue:
.Ymacs-frame-content {
display: inline-block;
min-width: 100%;
}