Skip to content

Commit

Permalink
Missed a variable update
Browse files Browse the repository at this point in the history
  • Loading branch information
jwortmann committed Mar 6, 2024
1 parent cb9fd8f commit 7ded35c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/rename.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def _render_rename_panel(
if start_row == end_row and len(new_text_rows) == 1 and end_col < len(line_content):
new_line_content += line_content[end_col:]
to_render.append(
ROWCOL_PREFIX.format(start_row + 1, start_col_utf16 + 1, new_line_content.strip() + "\n"))
ROWCOL_PREFIX.format(start_row + 1, start_col + 1, new_line_content.strip() + "\n"))
else:
to_render.append(original_line)
characters = "\n".join(to_render)
Expand Down

0 comments on commit 7ded35c

Please sign in to comment.