Skip to content

Commit

Permalink
if uuid starts at cursor, it is now selected
Browse files Browse the repository at this point in the history
  • Loading branch information
paleoterra committed Jan 19, 2019
1 parent 5912d70 commit 3adcf14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UUID Generator/FindAndReplaceUuid.swift
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ extension XCSourceTextRange {
func beginsAfter(range: XCSourceTextRange) -> Bool {
if range.start.line < self.start.line { return true }
if range.start.line == self.start.line &&
range.start.column < self.start.column { return true }
range.start.column <= self.start.column { return true }
return false
}

Expand Down

0 comments on commit 3adcf14

Please sign in to comment.