-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
builtin_marks break popups #65
Comments
Can you post your config? Just from your description, this doesn't sound like a bug, as I would expect a built in mark to show up if you have |
Thanks for your reply! You mean the marks or for popup config? For marks, it's basically the default config. Currently, without builtin_marks. I probably re-enable them and remove the marks.setup {
-- whether to map keybinds or not. default true
default_mappings = false,
-- which builtin marks to show. default {}
-- builtin_marks = { ".", "<", ">", "^" },
-- whether movements cycle back to the beginning/end of buffer. default true
cyclic = true,
-- whether the shada file is updated after modifying uppercase marks. default false
force_write_shada = false,
-- how often (in ms) to redraw signs/recompute mark positions.
-- higher values will have better performance but may cause visual lag,
-- while lower values may cause performance penalties. default 150.
refresh_interval = 150,
-- sign priorities for each type of mark - builtin marks, uppercase marks, lowercase
-- marks, and bookmarks.
-- can be either a table with all/none of the keys, or a single number, in which case
-- the priority applies to all marks.
-- default 10.
sign_priority = { lower=10, upper=15, builtin=8, bookmark=20 },
-- disables mark tracking for specific filetypes. default {}
excluded_filetypes = {},
-- marks.nvim allows you to configure up to 10 bookmark groups, each with its own
-- sign/virttext. Bookmarks can be used to group together positions and quickly move
-- across multiple buffers. default sign is '!@#$%^&*()' (from 0 to 9), and
-- default virt_text is "".
bookmark_0 = {
sign = "⚑",
-- virt_text = "hello world"
},
-- mappings = {}
mappings = {
-- set_next = "m,",
-- next = "mj",
-- prev = "mk",
-- preview = "mf",
set_bookmark0 = "m0",
}
} |
If you want the |
Hey thanks for answering. Found a solution. backstory:
|
Great! Just keep in mind that |
don't know it this little bug i'm experiencing is due to my config, but I couldn't find a fix on my side for it.
When enabling
builtin_marks
the.
mark is shown in every popup window. The additional width added by the mark results in an inconvient displacement of the contents of popup windows.With
builtin_marks
enabled:Without...:
The text was updated successfully, but these errors were encountered: