Compare commits
No commits in common. "27d3bf6b24639260ad907988a57bc9a9d28f3bac" and "65c1541146d2f34977f77b3670ff9502e9103488" have entirely different histories.
27d3bf6b24
...
65c1541146
@ -42,6 +42,16 @@ return {
|
||||
text = {
|
||||
function(args)
|
||||
local get_mark = function()
|
||||
local local_mark_buf = vim.iter(vim.fn.getmarklist(args.buf))
|
||||
:filter(function(mark)
|
||||
local lnum = mark.pos[2]
|
||||
return lnum == args.lnum
|
||||
end)
|
||||
:next()
|
||||
if local_mark_buf then
|
||||
return local_mark_buf.mark:sub(-1)
|
||||
end
|
||||
|
||||
local bufname = vim.api.nvim_buf_get_name(args.buf)
|
||||
local global_mark_buf = vim.iter(vim.fn.getmarklist())
|
||||
:filter(function(mark)
|
||||
@ -55,16 +65,6 @@ return {
|
||||
return global_mark_buf.mark:sub(-1)
|
||||
end
|
||||
|
||||
local local_mark_buf = vim.iter(vim.fn.getmarklist(args.buf))
|
||||
:filter(function(mark)
|
||||
local lnum = mark.pos[2]
|
||||
return lnum == args.lnum
|
||||
end)
|
||||
:next()
|
||||
if local_mark_buf then
|
||||
return local_mark_buf.mark:sub(-1)
|
||||
end
|
||||
|
||||
return " "
|
||||
end
|
||||
local mark = get_mark()
|
||||
@ -76,9 +76,6 @@ return {
|
||||
end,
|
||||
},
|
||||
condition = {
|
||||
function(args)
|
||||
return args.virtnum == 0
|
||||
end,
|
||||
std_condition,
|
||||
},
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user