From da34d030e6d01db2bba45b30080204b23a714c9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20T=C3=A1vora?= Date: Thu, 6 Feb 2025 23:07:49 +0000 Subject: 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 174d6f3..dc0bbc0 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))) -- cgit v1.0