60
60
function OrgEmphasis :highlight (highlights , bufnr )
61
61
local namespace = self .markup .highlighter .namespace
62
62
local hide_markers = config .org_hide_emphasis_markers
63
+ local ephemeral = self .markup :use_ephemeral ()
64
+ local conceal = hide_markers and ' ' or nil
63
65
64
66
for _ , entry in ipairs (highlights ) do
65
- local hl_offset = 1
66
-
67
67
-- Leading delimiter
68
68
vim .api .nvim_buf_set_extmark (bufnr , namespace , entry .from .line , entry .from .start_col , {
69
- ephemeral = true ,
70
- end_col = entry .from .start_col + hl_offset ,
69
+ ephemeral = ephemeral ,
70
+ end_col = entry .from .end_col ,
71
71
hl_group = markers [entry .char ].hl_name .. ' _delimiter' ,
72
72
spell = markers [entry .char ].spell ,
73
73
priority = 110 + entry .from .start_col ,
74
+ conceal = conceal ,
74
75
})
75
76
76
77
-- Closing delimiter
77
- vim .api .nvim_buf_set_extmark (bufnr , namespace , entry .from .line , entry .to .end_col - hl_offset , {
78
- ephemeral = true ,
78
+ vim .api .nvim_buf_set_extmark (bufnr , namespace , entry .from .line , entry .to .start_col , {
79
+ ephemeral = ephemeral ,
79
80
end_col = entry .to .end_col ,
80
81
hl_group = markers [entry .char ].hl_name .. ' _delimiter' ,
81
82
spell = markers [entry .char ].spell ,
82
83
priority = 110 + entry .from .start_col ,
84
+ conceal = conceal ,
83
85
})
84
86
85
87
-- Main body highlight
86
- vim .api .nvim_buf_set_extmark (bufnr , namespace , entry .from .line , entry .from .start_col + hl_offset , {
87
- ephemeral = true ,
88
- end_col = entry .to .end_col - hl_offset ,
88
+ vim .api .nvim_buf_set_extmark (bufnr , namespace , entry .from .line , entry .from .start_col + 1 , {
89
+ ephemeral = ephemeral ,
90
+ end_col = entry .to .end_col - 1 ,
89
91
hl_group = markers [entry .char ].hl_name ,
90
92
spell = markers [entry .char ].spell ,
91
93
priority = 110 + entry .from .start_col ,
92
94
})
93
-
94
- if hide_markers then
95
- vim .api .nvim_buf_set_extmark (bufnr , namespace , entry .from .line , entry .from .start_col , {
96
- end_col = entry .from .end_col ,
97
- ephemeral = true ,
98
- conceal = ' ' ,
99
- })
100
- vim .api .nvim_buf_set_extmark (bufnr , namespace , entry .to .line , entry .to .start_col , {
101
- end_col = entry .to .end_col ,
102
- ephemeral = true ,
103
- conceal = ' ' ,
104
- })
105
- end
106
95
end
107
96
end
108
97
@@ -114,7 +103,7 @@ function OrgEmphasis:parse_node(node)
114
103
return false
115
104
end
116
105
117
- local id = table.concat ({' emphasis' , node_type }, ' _' )
106
+ local id = table.concat ({ ' emphasis' , node_type }, ' _' )
118
107
119
108
return {
120
109
type = ' emphasis' ,
0 commit comments