Skip to content

Commit b46e1bc

Browse files
committed
fix: continuation error
1 parent ff2c18f commit b46e1bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/markdown-tools/lists.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ function M.continue_list_on_enter()
1010
local bufnr = vim.api.nvim_get_current_buf()
1111
local winid = vim.api.nvim_get_current_win()
1212
local line = vim.api.nvim_get_current_line()
13-
local cursor_row, _ = table.unpack(vim.api.nvim_win_get_cursor(winid)) -- 1-based row
13+
local cursor_row, _ = unpack(vim.api.nvim_win_get_cursor(winid)) -- 1-based row
1414

1515
-- Try to match different list types
1616
local indent, marker, content

0 commit comments

Comments
 (0)