mirror of
https://github.com/Hopiu/micro.git
synced 2026-04-15 11:51:03 +00:00
bufwindow: Don't highlight lines in ruler with active selection
This commit is contained in:
parent
3a16197da7
commit
aaf45a871f
1 changed files with 1 additions and 1 deletions
|
|
@ -449,7 +449,7 @@ func (w *BufWindow) displayBuffer() {
|
|||
|
||||
currentLine := false
|
||||
for _, c := range cursors {
|
||||
if bloc.Y == c.Y && w.active {
|
||||
if !c.HasSelection() && bloc.Y == c.Y && w.active {
|
||||
currentLine = true
|
||||
break
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue