2024-10-14 09:09:06 -04:00
|
|
|
local telescope = require('telescope.builtin')
|
|
|
|
|
|
|
|
local M = {}
|
|
|
|
|
|
|
|
function M.search_markdown_tasks()
|
|
|
|
telescope.grep_string({
|
2024-10-17 10:11:00 -04:00
|
|
|
prompt_title = "Open Task List",
|
2024-10-14 09:09:06 -04:00
|
|
|
search = "- [ ]", -- Customize if needed for specific task markers
|
|
|
|
cwd = vim.fn.expand('%:p:h') -- Current file's directory
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
return M
|