Path: csiph.com!usenet.pasdenom.info!aioe.org!news.stack.nl!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.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; '16,': 0.03; 'anyway.': 0.04; 'builtin': 0.07; 'e.g.,': 0.07; 'interpreter.': 0.07; 'subject:question': 0.08; 'python': 0.09; 'received:mail- qc0-f174.google.com': 0.09; 'sep': 0.09; 'cc:addr:python-list': 0.10; ':-)': 0.13; 'caveats': 0.16; 'competitors': 0.16; 'development?': 0.16; 'etc?': 0.16; 'strong,': 0.16; 'wrote:': 0.17; '(in': 0.18; 'cc:2**0': 0.23; 'cc:no real name:2**0': 0.24; 'cc:addr:python.org': 0.25; 'header:In-Reply-To:1': 0.25; 'am,': 0.27; 'first,': 0.27; 'message-id:@mail.gmail.com': 0.27; "doesn't": 0.28; 'all.': 0.28; "i'm": 0.29; 'install': 0.29; 'becomes': 0.30; 'subject: : ': 0.30; 'on,': 0.30; 'anyone': 0.33; 'received:google.com': 0.34; 'so,': 0.35; 'similar': 0.35; 'received:209.85': 0.35; 'really': 0.36; 'but': 0.36; 'programmers': 0.36; 'editor': 0.37; 'does': 0.37; 'received:209': 0.37; 'received:209.85.216': 0.37; 'subject:: ': 0.38; 'header:Received:5': 0.40; 'enable': 0.60; 'group,': 0.60; 'want,': 0.65; 'fact,': 0.69; 'advantages': 0.71; 'plugins.': 0.84; 'kate': 0.93 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=xqUVi/qGVQCwGAPRXql11r3LCp6cebdhHfSOW7JzOc0=; b=mpNFF/r+di7Vj1ow5etgX9WUUxZc9dFlf4ptIOwtzLxdiseV+B8Wr99N6GrNnWWa0H 0Sh8mkC/tP2AA+fTKjqRZqdY6G5Xhyc2/w3bHgoGGIfAHbGEi8vU4Px5b30teBv3K1G1 ybU4TNAuIMswQUd22v464YvHe3Gw63UautKS0C2j6D1GQ09ji13C46PcfnzAoVTOGxAE Va7adU6+vBt8PWQt1XFE92t/9YhAbDFRlTkynPmxVSXd4RwMAzA4Ibtqng/ugLTbu4Si 24IRjUPK+kcxbTsFK+hx72Oe5w/9woRtbBcpRBOdcwCU46RKHIHZptTa7h8w2dttxZle U6jA== MIME-Version: 1.0 In-Reply-To: References: From: Devin Jeanpierre Date: Sun, 16 Sep 2012 10:28:16 -0400 Subject: Re: newbie question : gedit as an ide To: Mayuresh Kathe Content-Type: text/plain; charset=UTF-8 Cc: python-list@python.org 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: 19 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1347805739 news.xs4all.nl 6871 [2001:888:2000:d::a6]:41920 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:29312 On Sun, Sep 16, 2012 at 7:52 AM, 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? bpython isn't an IDE, it's a good interactive interpreter. As for gedit as an editor... it's actually really bad, but fixable if you install plugins. e.g., it doesn't have builtin support for case sensitive / regexp search and so on, but these can be added so that gedit becomes tolerable. In fact, one of gedit's main advantages over many of its similar competitors (in particular I'm thinking of Kate) is that the plugin support is very strong, so if it doesn't do what you want, you can make it do what you want anyway. So, install / enable plugins. Lots of them. Or use an editor designed for programmers first, such as Kate or vim or emacs. -- Devin