From owner-freebsd-questions@FreeBSD.ORG Sat Oct 23 19:39:40 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F11CA16A4CE for ; Sat, 23 Oct 2004 19:39:40 +0000 (GMT) Received: from nic.ach.sch.gr (nic.sch.gr [194.63.238.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8EED143D46 for ; Sat, 23 Oct 2004 19:39:38 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: (qmail 11626 invoked by uid 207); 23 Oct 2004 19:39:37 -0000 Received: from keramida@ceid.upatras.gr by nic by uid 201 with qmail-scanner-1.21 (sophie: 3.04/2.19/3.81. Clear:RC:1(81.186.70.187):. Processed in 1.006225 secs); 23 Oct 2004 19:39:37 -0000 Received: from dialup187.ach.sch.gr (HELO gothmog.gr) ([81.186.70.187]) (envelope-sender ) by nic.sch.gr (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 23 Oct 2004 19:39:35 -0000 Received: from gothmog.gr (gothmog [127.0.0.1]) by gothmog.gr (8.13.1/8.13.1) with ESMTP id i9NJdOKf065263; Sat, 23 Oct 2004 22:39:24 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from giorgos@localhost) by gothmog.gr (8.13.1/8.13.1/Submit) id i9NJdO2q065240; Sat, 23 Oct 2004 22:39:24 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Sat, 23 Oct 2004 22:39:24 +0300 From: Giorgos Keramidas To: Choy Kho Yee Message-ID: <20041023193924.GA52933@gothmog.gr> References: <42734323-2522-11D9-8790-000A95BE58A4@tf7.so-net.ne.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <42734323-2522-11D9-8790-000A95BE58A4@tf7.so-net.ne.jp> cc: freebsd-questions@freebsd.org Subject: Re: A good IDE for C development? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Oct 2004 19:39:41 -0000 On 2004-10-24 03:35, Choy Kho Yee wrote: > Hi, I am a student of Computer Science. > I am looking for a good IDE(integrated development environment?) for > developing C programs. Something like netbeans for Java would be good. > Since I am still learning, I will mainly develop with source codes. Emacs is perfectly fine for most of this. > FYI, I am using emacs and a terminal now. > Any recommendations would be appreciated. That's what I use for all my development work too. You can configure Emacs to be a very comfortable and fast development environment. Start by binding keys to functions, with something like this: (define-key global-map [(f5)] 'compile) The good thing about Emacs, that no netbeans or other GUI IDE I've seen so far can surpass, is that you can build your own IDE out of it :-) - Giorgos