local M = {} function M.get_current_line() return vim.api.nvim_get_current_line() end function M.parse_line(line) local a, b = line:match"^(%S+)%s+(.+)" return a, b end return M