vote up 3 vote down star
1

I'd like to be able to open files with extensions other that .zip that have zip contents using Emacs' built-in zip file support. Is this possible? If so, how?

flag

74% accept rate
Shouldn't it be asked at superuser.com? – GrzegorzOledzki Sep 17 at 15:08
I suppose it's possible. I consider emacs questions to be programming-related, though, like asking a question about Eclipse or Visual Studio. – Chris R Sep 17 at 15:36
That's really a problem for Emacs (and I imagine Eclips/Visual Studio), there's a community here, but not so much on super user... – Trey Jackson Sep 17 at 15:55

2 Answers

vote up 7 vote down check

Open the file, then type

M-: (archive-mode)

If you're doing this a lot, then you might want to create a command to do it (because archive-mode isn't a command. Comments in the function say:

;; This is not interactive because you shouldn't be turning this
;; mode on and off.  You can corrupt things that way.

But you could easily advise it to make it interactive:

(defadvice archive-mode (before archive-mode-interactive activate)
  "Make this interactive"
  (interactive))

At which point you can now do M-x archive-mode.

link|flag
Thanks. That works perfectly. – Chris R Sep 17 at 16:21
vote up 7 vote down

If you want a more permanent solution, I do something like this in my .emacs:

;; Use archive mode to open Python eggs
(add-to-list 'auto-mode-alist '("\\.egg\\'" . archive-mode))
(add-to-list 'auto-mode-alist '("\\.odp\\'" . archive-mode))
(add-to-list 'auto-mode-alist '("\\.otp\\'" . archive-mode))
;; also for .xo files (zip)
(add-to-list 'auto-mode-alist '("\\.xo\\'" . archive-mode))
link|flag
True that, I didn't read the question closely enough (I missed the whole "other extensions" line. – Trey Jackson Sep 17 at 18:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.