simple_bookmarks.vim icon indicating copy to clipboard operation
simple_bookmarks.vim copied to clipboard

Feature Request: Place "name" at the beginning of the line

Open calon opened this issue 1 year ago • 2 comments

Sometimes the full file paths are too long, it's hard to find the right name. Better show the "name" before "filename", for more readability.

calon avatar Dec 27 '23 13:12 calon

I guess you mean in the quickfix list when you use :BookmarkQf? The problem is that this is how the quickfix list works, the filename is first, then the line and column, then the text. I can't change the UI, since I'm using Vim's built-in functionality.

You could try setting g:simple_bookmarks_long_quickfix to 1 to force the line of the bookmark on the line below. Just put this in your .vimrc:

let g:simple_bookmarks_long_quickfix = 1

But this isn't quite what you're asking for, and I don't know if it'll make it easier for you to read.

AndrewRadev avatar Jan 07 '24 18:01 AndrewRadev

I tried long quickfix option at the first, but that's a bit harder to read and locate quickly. Anyway, thank for your reply!

calon avatar Feb 09 '24 00:02 calon