2023-12-27 20:31:31 +01:00
|
|
|
local M = {}
|
|
|
|
local header_regex = "^(#+) (.+)"
|
|
|
|
|
|
|
|
M.promote = function()
|
2023-12-27 22:03:28 +01:00
|
|
|
local current_line = vim.api.nvim_get_current_line()
|
|
|
|
local row = vim.api.nvim_win_get_cursor(0)[1]
|
2023-12-27 20:31:31 +01:00
|
|
|
|
2023-12-27 22:03:28 +01:00
|
|
|
if current_line:match(header_regex) then
|
|
|
|
if current_line:match("^# (.+)") then
|
|
|
|
vim.notify("You can't promote this header anymore")
|
|
|
|
else
|
|
|
|
vim.api.nvim_buf_set_text(0, row - 1, 0, row - 1, 1, { '' })
|
2023-12-27 20:31:31 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
M.demote = function()
|
2023-12-27 22:03:28 +01:00
|
|
|
local current_line = vim.api.nvim_get_current_line()
|
|
|
|
local row = vim.api.nvim_win_get_cursor(0)[1]
|
2023-12-27 20:31:31 +01:00
|
|
|
|
2023-12-27 22:03:28 +01:00
|
|
|
if current_line:match(header_regex) then
|
|
|
|
if current_line:match("^###### (.+)") then
|
|
|
|
vim.notify("You can't demote this header anymore")
|
|
|
|
else
|
|
|
|
vim.api.nvim_buf_set_text(0, row - 1, 0, row - 1, 0, { '#' })
|
2023-12-27 20:31:31 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return M
|