fix: Avoid error when checking line content

main
borja (aider) 2 months ago
parent 50507dd706
commit ea13e19e55

@ -120,7 +120,8 @@ local function setup_buffer_keymaps()
end end
-- Check if the line is a TODO item and if it has content after the marker -- Check if the line is a TODO item and if it has content after the marker
local has_content = details.content and not vim.trim(details.content):empty() -- Use string.match with %S to check for any non-whitespace character
local has_content = details.content and string.match(details.content, "%S")
if details.is_todo and has_content then if details.is_todo and has_content then
-- Case 1: Non-empty TODO line -- Case 1: Non-empty TODO line

Loading…
Cancel
Save