]> granicus.if.org Git - mutt/commitdiff
Change browser <display-filename> to show full_path.
authorKevin McCarthy <kevin@8t8.us>
Tue, 10 Sep 2019 01:19:03 +0000 (18:19 -0700)
committerKevin McCarthy <kevin@8t8.us>
Tue, 10 Sep 2019 01:19:03 +0000 (18:19 -0700)
Prior to the introduction of display_name/full_path, it showed "name",
which was the full IMAP URL but the shortname for folder/mailbox view.

Now that the full_path is available, it makes sense to show that for
all cases.

browser.c

index c75406ca6f097361d81e1087c394a5f5a8626999..4e45013d1248bc33ec5663fda93db5c87b6c58fe 100644 (file)
--- a/browser.c
+++ b/browser.c
@@ -994,7 +994,7 @@ void _mutt_buffer_select_file (BUFFER *f, int flags, char ***files, int *numfile
 
       case OP_BROWSER_TELL:
         if (state.entrylen)
-         mutt_message("%s", state.entry[menu->current].display_name);
+         mutt_message("%s", state.entry[menu->current].full_path);
         break;
 
 #ifdef USE_IMAP