We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a9e34e commit 08873bfCopy full SHA for 08873bf
lua/orgmode/files/file.lua
@@ -315,6 +315,7 @@ function OrgFile:apply_search(search, todo_only)
315
local closed = item:get_closed_date()
316
local properties = item:get_own_properties()
317
local priority = item:get_priority()
318
+ local level = item:get_level()
319
320
return search:check({
321
props = vim.tbl_extend('keep', {}, properties, {
@@ -324,6 +325,7 @@ function OrgFile:apply_search(search, todo_only)
324
325
closed = closed and closed:to_wrapped_string(false),
326
priority = priority,
327
todo = item:get_todo() or '',
328
+ level = level,
329
}),
330
tags = item:get_tags(),
331
0 commit comments