Re: Enqueue copy/move operations.

2017-02-22 Thread Yury V. Zaytsev

On Wed, 22 Feb 2017, Daniele Giglio via mc wrote:

is it possible to enqueue copy/move operation the way TotalCommander 
does? It's useful when performing long operations.


Yes, choose "Background" in the copy/move dialog.

--
Sincerely yours,
Yury V. Zaytsev
___
mc mailing list
https://mail.gnome.org/mailman/listinfo/mc


Enqueue copy/move operations.

2017-02-22 Thread Daniele Giglio via mc
Hi,
is it possible to enqueue copy/move operation the way TotalCommander
does? It's useful when performing long operations.

Thanks in advance
-- 
Daniele
___
mc mailing list
https://mail.gnome.org/mailman/listinfo/mc


Re: can omni.ja be viewed with MC?

2017-02-22 Thread Mooffie
On 2/14/17, Felix Miata  wrote:
> http://forums.mozillazine.org/viewtopic.php?f=18=2943023 mentions that mc
>
> cannot view these "optimized" .zip files named omni.ja used by Firefox and
> SeaMonkey. When I try renaming to omni.zip, mc reports "inconsistent extfs
> archive". Is there a known solution to make these viewable in mc?

The 'unzip' program exits with error code (because it prints warnings,
to stderr) when it processes .ja files. That's why MC fails. Here's
what to do:

(1) Create a wrapper for unzip (and make it executable):

#!/bin/sh
if echo "$* " | grep "\\.ja "; then
  # when dealing with .ja files, suppress warnings and error code.
  unzip "$@" 2>/dev/null
  exit 0
else
  exec unzip "$@"
fi

(2) Edit /usr/lib/mc/extfs.d/uzip. Tell it to use the wrapper instead
of "/usr/bin/unzip".

>
> When I try renaming to omni.zip,

You can also do "cd omni.ja/uzip://". (Or symlink it. Or edit MC's
"extension file".)
___
mc mailing list
https://mail.gnome.org/mailman/listinfo/mc