branch: externals/breadcrumb
commit da34d030e6d01db2bba45b30080204b23a714c9f
Author: João Távora <joaotav...@gmail.com>
Commit: João Távora <joaotav...@gmail.com>

    Don't shorten non-file buffer names
    
    * breadcrumb.el (breadcrumb-project-crumbs): Don't shorten non-file
    buffer names.
---
 breadcrumb.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/breadcrumb.el b/breadcrumb.el
index 174d6f3f46..dc0bbc0549 100644
--- a/breadcrumb.el
+++ b/breadcrumb.el
@@ -371,7 +371,9 @@ propertized crumbs."
   "Describing the current file inside project."
   (bc--summarize
    (if buffer-file-name (bc--project-crumbs-1 buffer-file-name)
-     (list (propertize (buffer-name) 'face 'bc-project-leaf-face)))
+     (list (propertize (buffer-name)
+                       'face 'bc-project-leaf-face
+                       'bc-dont-shorten t)))
    (bc--length bc-project-max-length)
    (propertize bc-project-crumb-separator
                'face 'bc-project-crumbs-face)))

Reply via email to