Skip to content

Commit

Permalink
Merge pull request #89 from DoughnutSlayer/issue-80
Browse files Browse the repository at this point in the history
Fix Issue #80
  • Loading branch information
richrace authored Oct 28, 2020
2 parents 3f0c985 + 83e4c4b commit 3b6bb04
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/highlight-line-model.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,9 @@ class HighlightLineView
bottomLine = selectionRange.copy()

topLine.end = topLine.start
bottomLine.start = new Point(bottomLine.end.row - 1,
bottomLine.end.column)
bottomLine.start = bottomLine.end
if bottomLine.start.column == 0
bottomLine.start.row -= 1

style = atom.config.get "highlight-line.underline"

Expand Down

0 comments on commit 3b6bb04

Please sign in to comment.