| File ChangeLog changed (mode: 100644) (index 2c71eedb2..488f06133) |
| 93 |
93 |
|
|
| 94 |
94 |
Documented name conflict resolution dialog. Patch by Kirill Rekhov. |
Documented name conflict resolution dialog. Patch by Kirill Rekhov. |
| 95 |
95 |
|
|
|
96 |
|
Adjusted statusbar message according to the operation performed by p, P, |
|
97 |
|
al and rl normal mode commands. Thanks to CaptainFantastic and qadzek. |
|
98 |
|
|
| 96 |
99 |
Fixed 'trashdir' with "%r" on BSD-like systems (those with getmntinfo() |
Fixed 'trashdir' with "%r" on BSD-like systems (those with getmntinfo() |
| 97 |
100 |
instead of getmntent() API). The regression was apparently introduced in |
instead of getmntent() API). The regression was apparently introduced in |
| 98 |
101 |
v0.9.1-beta. Thanks to sublimal. |
v0.9.1-beta. Thanks to sublimal. |
| File src/fops_put.c changed (mode: 100644) (index fa2d634cf..6dba022de) |
| ... |
... |
put_files_i(view_t *view, int start) |
| 499 |
499 |
|
|
| 500 |
500 |
regs_pack(put_confirm.reg->name); |
regs_pack(put_confirm.reg->name); |
| 501 |
501 |
update_cursor_position(view); |
update_cursor_position(view); |
| 502 |
|
ui_sb_msgf("%d item%s inserted%s", put_confirm.processed, |
|
| 503 |
|
psuffix(put_confirm.processed), fops_get_cancellation_suffix()); |
|
|
502 |
|
|
|
503 |
|
const char *operation = "put"; |
|
504 |
|
switch(put_confirm.op) |
|
505 |
|
{ |
|
506 |
|
case CMLO_COPY: operation = "copied"; break; |
|
507 |
|
case CMLO_MOVE: operation = "moved"; break; |
|
508 |
|
case CMLO_LINK_REL: operation = "linked (rel)"; break; |
|
509 |
|
case CMLO_LINK_ABS: operation = "linked (abs)"; break; |
|
510 |
|
} |
|
511 |
|
ui_sb_msgf("%d item%s %s%s", put_confirm.processed, |
|
512 |
|
psuffix(put_confirm.processed), operation, |
|
513 |
|
fops_get_cancellation_suffix()); |
| 504 |
514 |
|
|
| 505 |
515 |
return 1; |
return 1; |
| 506 |
516 |
} |
} |