Skip to content

Commit

Permalink
Format with stylua
Browse files Browse the repository at this point in the history
  • Loading branch information
L3MON4D3 authored and github-actions[bot] committed Aug 16, 2024
1 parent c88391b commit 682db4e
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions lua/luasnip/util/select.lua
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,19 @@ function M.pre_yank(yank_register)
-- store registers so we don't change any of them.
-- "" is affected since we perform a cut (s), 1-9 also (although :h
-- quote_number seems to state otherwise for cuts to specific registers..?).
saved_registers =
store_registers("", "1", "2", "3", "4", "5", "6", "7", "8", "9", yank_register)
saved_registers = store_registers(
"",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
yank_register
)

-- store data needed for de-indenting lines.
start_line = vim.fn.line("'<") - 1
Expand Down

0 comments on commit 682db4e

Please sign in to comment.