In the delete confirmation dialog, the question mark is on its own line.
This is gramatically incorrect in English.
(panel_operate_generate_prompt): totally rewrite.
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
(toggle_show_hidden): redraw both panels forced after toggling
hidden files. The bug is appeared when toggling is performed
by mouse clicking on icon in the panel title: current panel
is updated, other one isn't.
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
Open the Advanced chown dialog. Navigate to owner or group, and press
Enter. A dialog enlisting the available usernames or groups appears.
Move up or down in this dialog, then press double Esc or F10.
Actual behavior: The selected value gets accepted, just as if Enter was
pressed.
Expected behavior: The user or group is not changed, as if this dialog
was not opened at all.
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
Revert "(file_mask_dialog): don't call tilde_expand() because
vfs_path_from_str() returns an absolute path."
This reverts commit 1b774ac1fe.
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
Fix inconsistency of the arrow's direction in the panel header line
across skins.
Change default value of "sort-sign-down" from "," (comma) to "." (dot).
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
The code depended on the execution and outcome of the hardlink check.
This was bogus - the two checks have nothing in common except the stat()
call they both depend on.
Add 'shell/i/.zoo' to detect zip archive using .zip extension
in addition to 'type/i/^zip\ archive'.
Thanks ctmp1 <gvlatyshev@gmail.com> for the original patch.
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This option contains a set of characters to stop paragraph formatting.
If one of those characters is found in the begin of line, that line and
all following lines of paragraph will be untouched. Default value is
"-+*\,.;:&>".
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
* 3117_external_editor_line_number:
Update EN and RU manual pages.
Launching external editor/viewer with F4/F3 w/o passing line number.
Allow launch external editor/viewer w/o line number.
Ticket #3117: Launching editor with CK_Edit shouldn't pass line number.
When pressing F4 to start the editor, a "+1" argument is passed to open
the file at the first line.
For some editor this is absolutely unnecessary since they open the file
there anyways. For some others (at least "joe", but probably others too)
this is harmful: joe has a convenience feature that by default it opens
the file where it was last open, unless of course overridden from
command line. Currently mc forces joe to open the file at the first
line, although opening it where it was last open would be much more
desired.
The right solution would be to consult mc.lib only when opening the
viewer/editor through the "word search in files (M-?)" feature, and
not when F3/F4 is pressed on a file, in the latter case $VIEWER or
$EDITOR should simply be launched with the filename but no additional
parameters.
Initial step: minor refactoring:
(do_edit_at_line): rename to edit_file_at_line.
(edit_file_at_line): changed type of arguments from int to gboolean.
(view_file_at_line): likewise.
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>