@@ -10,13 +10,15 @@ local PriorityState = require('orgmode.objects.priority_state')
10
10
--- @class OrgConfig : OrgConfigOpts
11
11
--- @field opts table
12
12
--- @field todo_keywords OrgTodoKeywords
13
+ --- @field priorities table<string , { type : string , hl_group : string } >
13
14
local Config = {}
14
15
15
16
--- @param opts ? table
16
17
function Config :new (opts )
17
18
local data = {
18
19
opts = vim .tbl_deep_extend (' force' , defaults , opts or {}),
19
20
todo_keywords = nil ,
21
+ priorities = nil ,
20
22
}
21
23
setmetatable (data , self )
22
24
return data
41
43
--- @return OrgConfig
42
44
function Config :extend (opts )
43
45
self .todo_keywords = nil
46
+ self .priorities = nil
44
47
opts = opts or {}
45
48
self :_deprecation_notify (opts )
46
49
if not self :_are_priorities_valid (opts ) then
@@ -326,6 +329,10 @@ function Config:get_priority_range()
326
329
end
327
330
328
331
function Config :get_priorities ()
332
+ if self .priorities then
333
+ return self .priorities
334
+ end
335
+
329
336
local priorities = {
330
337
[self .opts .org_priority_highest ] = { type = ' highest' , hl_group = ' @org.priority.highest' },
331
338
}
@@ -351,6 +358,9 @@ function Config:get_priorities()
351
358
-- we need to overwrite the lowest value set by the second loop
352
359
priorities [self .opts .org_priority_lowest ] = { type = ' lowest' , hl_group = ' @org.priority.lowest' }
353
360
361
+ -- Cache priorities to avoid unnecessary recalculations
362
+ self .priorities = priorities
363
+
354
364
return priorities
355
365
end
356
366
@@ -360,23 +370,24 @@ function Config:setup_ts_predicates()
360
370
361
371
vim .treesitter .query .add_predicate (' org-is-todo-keyword?' , function (match , _ , source , predicate )
362
372
local node = match [predicate [2 ]]
373
+ node = node and node [# node ]
363
374
if node then
364
375
local text = vim .treesitter .get_node_text (node , source )
365
376
return todo_keywords [text ] and todo_keywords [text ].type == predicate [3 ] or false
366
377
end
367
378
368
379
return false
369
- end , { force = true , all = false })
380
+ end , { force = true , all = true })
370
381
371
382
local org_cycle_separator_lines = math.max (self .opts .org_cycle_separator_lines , 0 )
372
383
373
384
vim .treesitter .query .add_directive (' org-set-fold-offset!' , function (match , _ , bufnr , pred , metadata )
374
385
if org_cycle_separator_lines == 0 then
375
386
return
376
387
end
377
- --- @type TSNode | nil
378
388
local capture_id = pred [2 ]
379
389
local section_node = match [capture_id ]
390
+ section_node = section_node and section_node [# section_node ]
380
391
if not capture_id or not section_node or section_node :type () ~= ' section' then
381
392
return
382
393
end
@@ -402,65 +413,63 @@ function Config:setup_ts_predicates()
402
413
end
403
414
range [3 ] = range [3 ] - 1
404
415
metadata [capture_id ].range = range
405
- end , { force = true , all = false })
416
+ end , { force = true , all = true })
406
417
407
418
vim .treesitter .query .add_predicate (' org-is-valid-priority?' , function (match , _ , source , predicate )
419
+ --- @type TSNode | nil
408
420
local node = match [predicate [2 ]]
409
- local type = predicate [ 3 ]
421
+ node = node and node [ # node ]
410
422
if not node then
411
423
return false
412
424
end
413
425
426
+ local type = predicate [3 ]
414
427
local text = vim .treesitter .get_node_text (node , source )
415
- local is_valid = valid_priorities [text ] and valid_priorities [text ].type == type
416
- if not is_valid then
417
- return false
418
- end
419
- local priority_text = ' [#' .. text .. ' ]'
420
- local full_node_text = vim .treesitter .get_node_text (node :parent (), source )
421
- if priority_text ~= full_node_text then
422
- return false
423
- end
428
+ -- Leave only priority cookie: [#A] -> A
429
+ text = text :sub (3 , - 2 )
430
+ return valid_priorities [text ] and valid_priorities [text ].type == type
431
+ end , { force = true , all = true })
424
432
425
- local prev_sibling = node :parent ():prev_sibling ()
426
- -- If first child, consider it valid
427
- if not prev_sibling then
428
- return true
433
+ vim .treesitter .query .add_directive (' org-set-block-language!' , function (match , _ , bufnr , pred , metadata )
434
+ local lang_node = match [pred [2 ]]
435
+ lang_node = lang_node and lang_node [# lang_node ]
436
+ if not lang_node then
437
+ return
429
438
end
430
-
431
- -- If prev sibling has more prev siblings, it means that the prev_sibling is not a todo keyword
432
- -- so this priority is not valid
433
- if prev_sibling :prev_sibling () then
434
- return false
439
+ local text = vim .treesitter .get_node_text (lang_node , bufnr )
440
+ if not text or vim .trim (text ) == ' ' then
441
+ return
435
442
end
443
+ metadata [' injection.language' ] = utils .detect_filetype (text , true )
444
+ end , { force = true , all = true })
436
445
437
- local todo_text = vim .treesitter .get_node_text (prev_sibling , source )
438
- local is_prev_sibling_todo_keyword = todo_keywords [todo_text ] and true or false
439
- return is_prev_sibling_todo_keyword
440
- end , { force = true , all = false })
441
-
442
- vim .treesitter .query .add_directive (' org-set-block-language!' , function (match , _ , bufnr , pred , metadata )
446
+ vim .treesitter .query .add_directive (' org-set-inline-block-language!' , function (match , _ , bufnr , pred , metadata )
443
447
local lang_node = match [pred [2 ]]
448
+ lang_node = lang_node and lang_node [# lang_node ]
444
449
if not lang_node then
445
450
return
446
451
end
447
452
local text = vim .treesitter .get_node_text (lang_node , bufnr )
448
453
if not text or vim .trim (text ) == ' ' then
449
454
return
450
455
end
456
+ -- Remove `src_` part: src_lua -> lua
457
+ text = text :sub (5 )
458
+ -- Remove opening brackend and parameters: lua[params]{ -> lua
459
+ text = text :gsub (' [%{%[].*' , ' ' )
451
460
metadata [' injection.language' ] = utils .detect_filetype (text , true )
452
- end , { force = true , all = false })
461
+ end , { force = true , all = true })
453
462
454
463
vim .treesitter .query .add_predicate (' org-is-headline-level?' , function (match , _ , _ , predicate )
455
- --- @type TSNode
456
464
local node = match [predicate [2 ]]
457
- local level = tonumber ( predicate [ 3 ])
465
+ node = node and node [ # node ]
458
466
if not node then
459
467
return false
460
468
end
469
+ local level = tonumber (predicate [3 ])
461
470
local _ , _ , _ , node_end_col = node :range ()
462
471
return ((node_end_col - 1 ) % 8 ) + 1 == level
463
- end , { force = true , all = false })
472
+ end , { force = true , all = true })
464
473
end
465
474
466
475
--- @param content table
0 commit comments