OP_BOUNCE_MESSAGE "remail a message to another user"
OP_BROWSER_NEW_FILE "select a new file in this directory"
OP_BROWSER_VIEW_FILE "view file"
+OP_BROWSER_TELL "display the currently selected file's name"
OP_CHANGE_DIRECTORY "change directories"
OP_CHECK_NEW "check mailboxes for new mail"
OP_COMPOSE_ATTACH_FILE "attach a file(s) to this message"
mutt_menuDestroy (&menu);
return;
+ case OP_BROWSER_TELL:
+ if(state.entrylen)
+ mutt_message(state.entry[menu->current].name);
+ break;
+
case OP_CHANGE_DIRECTORY:
strfcpy (buf, LastDir, sizeof (buf));
/* The file browser */
struct binding_t OpBrowser[] = {
{ "change-dir", OP_CHANGE_DIRECTORY, "c" },
+ { "display-filename", OP_BROWSER_TELL, "@" },
{ "enter-mask", OP_ENTER_MASK, "m" },
{ "sort", OP_SORT, "o" },
{ "sort-reverse", OP_SORT_REVERSE, "O" },