make set_selections consistent

This commit is contained in:
takase1121 2022-01-02 19:18:08 +08:00
parent e079ddfa37
commit df0f6fb94c
No known key found for this signature in database
GPG Key ID: 60EEFFC68EB3031B
1 changed files with 1 additions and 2 deletions

View File

@ -337,8 +337,7 @@ local commands = {
col2 = col2 + (line1 == line2 and (#comment[1] + 1) or 0)
doc():insert(line2, col2, " " .. comment[2])
col2 = col2 + #comment[2] + 1
doc():set_selections(idx, line1, col1, line2, col2)
doc():set_selections(idx, line1, col1, line2, col2 + #comment[2] + 1)
end
end
end,