Replies: 1 comment 2 replies
|
Hello! Thanks for the report. I cannot reproduce this problem. Lines 4694 to 4700 in 45fdad7 Can you create a minimal recipe which demonstrates the problem? Maybe something else in your configuration interferes? |
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
I often switch back and forth between the most recent buffers. For this, I have a macro that uses
consult-buffer. It works well, except in a situation that is actually very common in my workflow: things break down when using 2 files with the same name but different paths.In that case,
consultconsiders the buffers created from those files as being the same buffer, while they are obviously not.Example:
Let's say that I am working on 2 files called
theme.scssfrom different projects. They appear in the modeline astheme.scss<project1>andtheme.scss<project2>.Switching back and forth between them is a nightmare because
consultwill send both of them at the end of theconsult-bufferqueue, no matter which one I am visiting (becauseconsultwill wrongly consider both of them as "the current buffer").It would be great if the full name displayed in the minibuffer (including the
<some-project>part) were used instead of simply the file name.This has been bothering me for a long time (and it actually took me a while to identify where things were breaking down in the reordering of
consult-buffer).Thank you!
All reactions