Skip to content

Commit

Permalink
refactor: do not enable highlight delimiters for certain markers
Browse files Browse the repository at this point in the history
See #623 (comment)

> We don't need delimiters highlight for `latex` type since we do not handle those markers as markup and we do not add extmarks for them.
  • Loading branch information
PriceHiller committed Nov 2, 2023
1 parent 37a9e42 commit c286e87
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion lua/orgmode/colors/markup_highlighter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,37 +10,43 @@ local markers = {
['*'] = {
hl_name = 'org_bold',
hl_cmd = 'hi def %s term=bold cterm=bold gui=bold',
delimiter_hl = true,
nestable = true,
type = 'text',
},
['/'] = {
hl_name = 'org_italic',
hl_cmd = 'hi def %s term=italic cterm=italic gui=italic',
delimiter_hl = true,
nestable = true,
type = 'text',
},
['_'] = {
hl_name = 'org_underline',
hl_cmd = 'hi def %s term=underline cterm=underline gui=underline',
delimiter_hl = true,
nestable = true,
type = 'text',
},
['+'] = {
hl_name = 'org_strikethrough',
hl_cmd = 'hi def %s term=strikethrough cterm=strikethrough gui=strikethrough',
delimiter_hl = true,
nestable = true,
type = 'text',
},
['~'] = {
hl_name = 'org_code',
hl_cmd = 'hi def link %s String',
delimiter_hl = true,
nestable = false,
spell = false,
type = 'text',
},
['='] = {
hl_name = 'org_verbatim',
hl_cmd = 'hi def link %s String',
delimiter_hl = true,
nestable = false,
spell = false,
type = 'text',
Expand All @@ -50,18 +56,21 @@ local markers = {
hl_cmd = 'hi def link %s OrgTSLatex',
nestable = false,
spell = false,
delimiter_hl = false,
type = 'latex',
},
['\\{'] = {
hl_name = 'org_latex',
hl_cmd = 'hi def link %s OrgTSLatex',
nestable = false,
delimiter_hl = false,
type = 'latex',
},
['\\s'] = {
hl_name = 'org_latex',
hl_cmd = 'hi def link %s OrgTSLatex',
nestable = false,
delimiter_hl = false,
type = 'latex',
},
}
Expand Down Expand Up @@ -444,7 +453,9 @@ end
local function setup()
for _, marker in pairs(markers) do
vim.cmd(string.format(marker.hl_cmd, marker.hl_name))
vim.cmd(string.format(marker.hl_cmd, marker.hl_name .. '_delimiter'))
if marker.delimiter_hl then
vim.cmd(string.format(marker.hl_cmd, marker.hl_name .. '_delimiter'))
end
end
vim.cmd('hi def link org_hyperlink Underlined')
load_deps()
Expand Down

0 comments on commit c286e87

Please sign in to comment.