mirror of
https://github.com/hexedtech/codemp-nvim.git
synced 2024-11-22 15:34:53 +01:00
fix: put user.name is buf mappings
This commit is contained in:
parent
04ca78ac16
commit
3ba6c30a48
1 changed files with 1 additions and 1 deletions
|
@ -182,7 +182,7 @@ local function join(workspace)
|
||||||
CODEMP.workspace = ws
|
CODEMP.workspace = ws
|
||||||
for _, user in pairs(CODEMP.workspace:user_list()) do
|
for _, user in pairs(CODEMP.workspace:user_list()) do
|
||||||
buffers.users[user.name] = ""
|
buffers.users[user.name] = ""
|
||||||
user_hl[user] = {
|
user_hl[user.name] = {
|
||||||
ns = vim.api.nvim_create_namespace("codemp-cursor-" .. user.name),
|
ns = vim.api.nvim_create_namespace("codemp-cursor-" .. user.name),
|
||||||
hi = utils.color(user.name),
|
hi = utils.color(user.name),
|
||||||
pos = { 0, 0 },
|
pos = { 0, 0 },
|
||||||
|
|
Loading…
Reference in a new issue