Skip to content

Commit

Permalink
fix: floating window column offset (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
benlubas committed Apr 19, 2024
1 parent 8bedcae commit cbaff48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rplugin/python3/molten/outputbuffer.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ def calculate_offset(self, anchor: Position) -> int:

def show_floating_win(self, anchor: Position) -> None:
win = self.nvim.current.window
win_col = win.col
win_col = 0
offset = 0
if self.options.cover_empty_lines:
offset = self.calculate_offset(anchor)
Expand Down

0 comments on commit cbaff48

Please sign in to comment.