Path: csiph.com!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder1.enfer-du-nord.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.002 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; '16,': 0.03; 'makefile': 0.07; 'subject:question': 0.08; 'python': 0.09; 'git': 0.09; 'ide': 0.09; 'sep': 0.09; 'gui': 0.11; ':-)': 0.13; 'caveats': 0.16; 'development?': 0.16; 'etc?': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'ubuntu,': 0.16; 'wrote:': 0.17; 'switched': 0.17; 'sort': 0.21; 'received:209.85.214.174': 0.21; 'commands,': 0.22; 'second': 0.24; 'feature': 0.24; 'linux': 0.24; 'tried': 0.25; 'header:In-Reply-To:1': 0.25; 'environment.': 0.27; 'in.': 0.27; 'message-id:@mail.gmail.com': 0.27; 'all.': 0.28; 'run': 0.28; '(from': 0.30; 'subject: : ': 0.30; 'window': 0.30; 'primary': 0.30; 'anyone': 0.33; 'to:addr:python-list': 0.33; 'received:google.com': 0.34; 'pm,': 0.35; 'received:209.85': 0.35; 'really': 0.36; 'thank': 0.36; 'editor': 0.37; 'does': 0.37; 'received:209': 0.37; 'subject:: ': 0.38; 'to:addr:python.org': 0.39; 'received:209.85.214': 0.39; 'header:Received:5': 0.40; 'group,': 0.60; 'you.': 0.61; 'first': 0.61; 'between': 0.63; 'more': 0.63; 'liked': 0.66; 'felt': 0.75 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=AYxLGO9LTA60xVhp9w8aDTF23g192PMjLfNLOZO5HDQ=; b=Ljz4azFp+9cOESOcTNi+Nz96m/QbuNq3J6nSfgWouacedZ6iGiZ326nyMnfgOcmi+n ucFXFrXm+emLPjPTLhkhDWhnY6Hk3r9A3x6ECnBnTpWMbe0KcLzAeG3eBlFslLVFqTA5 1PZOG+1L7rqfgyygUbSivvBEJ2yCevNMbGOEYG2Xsqw4bJaENn+hj2793o6bLMzVJYxQ 9j/VRt51mTRv4kbI71fzaF/7UU96PWjF57km49FnsnAJdS+B4ShR4JXdYgIdGW0To1Un 2g0aKcDOsVjAzvN4w6sLUjSef5LqX4ND0nmaisWIVeO0in3X3UUV9mn9DiwSeDJz6z8k Bveg== MIME-Version: 1.0 In-Reply-To: References: Date: Mon, 17 Sep 2012 00:14:05 +1000 Subject: Re: newbie question : gedit as an ide From: Chris Angelico To: python-list@python.org Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 18 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1347804848 news.xs4all.nl 6848 [2001:888:2000:d::a6]:37540 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:29311 On Sun, Sep 16, 2012 at 9:52 PM, Mayuresh Kathe wrote: > new to the group, a quick hello to all. :-) > does anyone use gedit as an 'ide' for python development? > if yes, may i know the caveats against using 'idle', 'bpython', etc? > > thank you. I never really liked gedit; when I first switched my primary development platform to Linux (from working on OS/2 and Windows), it was an Ubuntu, and I felt that gedit was less than satisfactory. The second GUI editor I tried was SciTE, which IMHO is distinctly superior. Mainly, though, I don't use any sort of IDE per se; the only "IDE-like" feature in my setup is SciTE's F7 key binding to run 'make', and then a properly-configured makefile in every directory that I work in. Between that and a terminal window for git commands, there's not really much more to look for in a development environment. ChrisA