🪴 my neovim config:)
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

plugin: fix input line split

robin f5429f00 e93ff339

+1 -1
+1 -1
config/plugin/input.lua
··· 43 43 if #vim.api.nvim_buf_get_lines(buf, 0, -1, false) == 1 then 44 44 return 45 45 end 46 - local input = vim.api.nvim_buf_get_lines(buf, 0, -1, false)[1] 46 + local input = table.concat(vim.api.nvim_buf_get_lines(buf, 0, -1, false), "") 47 47 cb(input) 48 48 end, 49 49 })