unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* Zip-Archive mode should allow copy
@ 2005-11-23 22:15 Dan Jacobson
  2005-11-28 16:49 ` Kevin Rodgers
  0 siblings, 1 reply; 2+ messages in thread
From: Dan Jacobson @ 2005-11-23 22:15 UTC (permalink / raw)


Zip-Archive mode should allow copy, like dired's "C".
As of now, if one wants a specific file, one must bring it up in a
buffer, and write it, hopefully intact with no added newlines etc.
into a file. No we don't always want to edit files when extracting
them from archives, e.g., .exe's.

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Zip-Archive mode should allow copy
  2005-11-23 22:15 Zip-Archive mode should allow copy Dan Jacobson
@ 2005-11-28 16:49 ` Kevin Rodgers
  0 siblings, 0 replies; 2+ messages in thread
From: Kevin Rodgers @ 2005-11-28 16:49 UTC (permalink / raw)


Emacs is the extensible, customizable, self-documenting real-time
display editor.

Dan Jacobson wrote:
 > Zip-Archive mode should allow copy, like dired's "C".
 > As of now, if one wants a specific file, one must bring it up in a
 > buffer, and write it, hopefully intact with no added newlines etc.
 > into a file.

Have you ever experienced a problem with Emacs making incorrect coding
system changes when you do that?  If so, submit a proper bug report.

You could just define a keyboard macro that does what you need (e.g.
`f C-x C-w C-x k'), name it, then bind it to "C" in Archive Mode's
local keymap.

 > No we don't always want to edit files when extracting
 > them from archives, e.g., .exe's.

(add-hook 'find-file-hooks
           (lambda ()
             (when (and archive-subfile-mode
                        (let ((case-fold-search nil))
                          (string-match "\\.exe\\'"
                                        (aref archive-subfile-mode 0))))
               (setq buffer-read-only t))))

-- 
Kevin Rodgers

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2005-11-28 16:49 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-11-23 22:15 Zip-Archive mode should allow copy Dan Jacobson
2005-11-28 16:49 ` Kevin Rodgers

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).