mirror of
https://github.com/hexedtech/codemp-nvim.git
synced 2024-11-21 15:04:52 +01:00
feat: put back blocks at end, show fname
This commit is contained in:
parent
2f3132b82d
commit
3555572c2a
2 changed files with 12 additions and 6 deletions
|
@ -84,6 +84,13 @@ M.name = function(config, node, state)
|
|||
}
|
||||
end
|
||||
|
||||
M.buffer = function(config, node, state)
|
||||
return {
|
||||
text = codemp_buffers.users[node.name],
|
||||
highlight = highlights.FILE_ICON,
|
||||
}
|
||||
end
|
||||
|
||||
M.spacer = function(config, node, state)
|
||||
return {
|
||||
text = " ",
|
||||
|
@ -97,15 +104,12 @@ M.users = function(config, node, state)
|
|||
for user, buf in pairs(codemp_buffers.users) do
|
||||
if buf == node.name then
|
||||
table.insert(out, {
|
||||
text = string.sub(user, 0, 1),
|
||||
text = " ",
|
||||
highlight = codemp_utils.color(user).bg,
|
||||
align = "end",
|
||||
})
|
||||
end
|
||||
end
|
||||
table.insert(out, {
|
||||
text = " ",
|
||||
highlight = highlights.NORMAL,
|
||||
})
|
||||
return out
|
||||
end
|
||||
|
||||
|
|
|
@ -34,12 +34,14 @@ M.default_config = {
|
|||
{ "indent" },
|
||||
{ "icon" },
|
||||
{ "name" },
|
||||
{ "buffer" },
|
||||
},
|
||||
buffer = {
|
||||
{ "indent" },
|
||||
{ "icon" },
|
||||
{ "users" },
|
||||
{ "name" },
|
||||
{ "spacer" },
|
||||
{ "users" },
|
||||
},
|
||||
entry = {
|
||||
{ "indent" },
|
||||
|
|
Loading…
Reference in a new issue