MarksToggleSigns is unreliable
Closed this issue · 2 comments
mystilleef commented
Since the last update, MarksToggleSigns
does not work reliably. It doesn't hide all marks in the buffer anymore. Also, set_next
doesn't work reliably anymore. I've attached a video of the issue.
Video
marks.mp4
Config
-- marks
use({
"chentau/marks.nvim",
config = function()
require("marks").setup({
default_mappings = false,
force_write_shada = false,
refresh_interval = 1250,
builtin_marks = { ".", "<", ">", "^", "[", "]", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", [[']], [["]], },
mappings = {
next = "m]",
prev = "m[",
set_next = "m,",
delete_line = "m<bs>",
delete_buf = "m<space>",
},
excluded_filetypes = {
"NeogitCommitMessage",
"NeogitCommitPopup",
"NeogitPopup",
"NeogitStatus",
"TelescopePrompt",
"help",
"packer",
},
})
Neovim version
NVIM v0.6.0-dev+560-g1fdbd29df
Build type: Release
LuaJIT 2.1.0-beta3
chentoast commented
I can’t seem to be able to view your attached gif. Can you provide a concrete repro?
mystilleef commented
I can’t seem to be able to view your attached gif. Can you provide a concrete repro?
I think this was a configuration issue on my part. After reinstallation, I can't reproduce the issue.