Is it possible to open a CBR file with Emacs?
I am not asking for a package similar to MComix, just a quick way to read the content of a .cbr file.
Is it possible to open a CBR file with Emacs?
I am not asking for a package similar to MComix, just a quick way to read the content of a .cbr file.
Installing unrar-free
(I am on Debian sid) and adding .cbr
to archive-mode
as suggested by lawlist here, did the trick.
archive-mode
, which can open*.rar
files if you have that utility installed. So, you need that utility plus you need to addcbr
to theauto-mode-alist
forarchive-mode
-- i.e.,(add-to-list 'auto-mode-alist '("\\.\\(cbr\\)\\'" . archive-mode))
– lawlist Jan 26 '15 at 18:23RAR
is not free; however, it does have a free trial. Unfortunately,archive-mode
is out-of-date and needs a tweak or two to properly handle the current version ofRAR
-- that is a different question than the one you are asking. I have already configured a custom version ofarchive-mode
to take advantage of the current full version ofRAR
-- so if you decide to go that route, then post a new question . . . If you have an older version ofRAR
or can find an older version, then you will not need to modifyarchive-mode
. – lawlist Jan 26 '15 at 18:27RAR
I have installed:rar: Installed: 2:5.2.0-dmo1
– Boccaperta-IT Jan 26 '15 at 18:35