Skip to content

Commit 684b3cf

Browse files
wsdjeggithub-actions[bot]
authored andcommitted
Format with stylua
1 parent 30d2593 commit 684b3cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lua/cmp/utils/window.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ window.update = function(self)
145145
row = info.row,
146146
col = info.col + info.width - info.scrollbar_offset, -- info.col was already contained the scrollbar offset.
147147
zindex = (self.style.zindex and (self.style.zindex + 1) or 1),
148-
border = "none",
148+
border = 'none',
149149
}
150150
if self.sbar_win and vim.api.nvim_win_is_valid(self.sbar_win) then
151151
vim.api.nvim_win_set_config(self.sbar_win, style)
@@ -177,7 +177,7 @@ window.update = function(self)
177177
row = info.row + thumb_offset + (info.border_info.visible and info.border_info.top or 0),
178178
col = info.col + info.width - 1, -- info.col was already added scrollbar offset.
179179
zindex = (self.style.zindex and (self.style.zindex + 2) or 2),
180-
border = "none",
180+
border = 'none',
181181
}
182182
if self.thumb_win and vim.api.nvim_win_is_valid(self.thumb_win) then
183183
vim.api.nvim_win_set_config(self.thumb_win, style)

0 commit comments

Comments
 (0)