Skip to content

Commit 9b5c799

Browse files
committed
Fix indent
1 parent f17047f commit 9b5c799

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lua/scrollview.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3164,7 +3164,7 @@ local handle_mouse = function(button, is_primary, init_props, init_mousepos)
31643164
-- at the mouse pointer. This way, the popup opens where the click
31653165
-- occurs.
31663166
if popup_bufnr == -1
3167-
or not to_bool(fn.bufloaded(popup_bufnr)) then
3167+
or not to_bool(fn.bufloaded(popup_bufnr)) then
31683168
if popup_bufnr == -1 then
31693169
popup_bufnr = api.nvim_create_buf(false, true)
31703170
end
@@ -3178,7 +3178,7 @@ local handle_mouse = function(button, is_primary, init_props, init_mousepos)
31783178
-- Don't turn off undo for Neovim 0.9.0 and 0.9.1 since Neovim
31793179
-- could crash, presumably from Neovim #24289. #111, #115
31803180
if not to_bool(fn.has('nvim-0.9'))
3181-
or to_bool(fn.has('nvim-0.9.2')) then
3181+
or to_bool(fn.has('nvim-0.9.2')) then
31823182
api.nvim_buf_set_option(popup_bufnr, 'undolevels', -1)
31833183
end
31843184
end

0 commit comments

Comments
 (0)