all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Integrating Windows Emacs with Cygwin - how I got it working
@ 2010-02-27 10:11 The Quiet Center
  2010-02-27 13:42 ` Lennart Borgman
       [not found] ` <mailman.1973.1267278188.14305.help-gnu-emacs@gnu.org>
  0 siblings, 2 replies; 7+ messages in thread
From: The Quiet Center @ 2010-02-27 10:11 UTC (permalink / raw)
  To: help-gnu-emacs

I downloaded a patched Emacs called EmacsW32. Lennart Brogman created
this version of Emacs, but it still did not have the integration with
Cygwin that I needed.
For instance, it was not possible to type M-x grep-find and have a
working grep.

After googling about, I found an [excellent post on gnu.emacs.help]
(http://groups.google.com/group/gnu.emacs.help/browse_thread/thread/
8f52d7f83dd0fb28/72c4d30d8603b4ee?lnk=gst&q=cygwin#72c4d30d8603b4ee)
by Drew Adams. I had to modify his instructions with something I found
at [the web sailor](http://www.khngai.com/emacs/cygwin.php).

To keep it simple, I’m going to give you the whole process:

– Install a [GNU Windows Emacs](http://ftp.gnu.org/gnu/emacs/windows/)
- Put these two files in your load-path: [cygwin mount](http://
www.emacswiki.org/cgi-bin/wiki/download/cygwin-mount.el) and [setup-
cygwin](http://www.emacswiki.org/cgi-bin/wiki/download/setup-
cygwin.el)
- Put this in your emacs init file and you’re done:


(if (and (eq system-type 'windows-nt)
  (require 'cygwin-mount nil t))
(progn
  (setenv "PATH" (concat "c:/cygwin/bin;" (getenv "PATH")))
  (setq exec-path (cons "c:/cygwin/bin/" exec-path))
  (require 'setup-cygwin)))


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

end of thread, other threads:[~2010-02-27 18:29 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-27 10:11 Integrating Windows Emacs with Cygwin - how I got it working The Quiet Center
2010-02-27 13:42 ` Lennart Borgman
     [not found] ` <mailman.1973.1267278188.14305.help-gnu-emacs@gnu.org>
2010-02-27 14:08   ` The Quiet Center
2010-02-27 14:57     ` Lennart Borgman
     [not found]     ` <mailman.1985.1267282656.14305.help-gnu-emacs@gnu.org>
2010-02-27 15:39       ` The Quiet Center
2010-02-27 18:29         ` Lennart Borgman
2010-02-27 15:35   ` The Quiet Center

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.