Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #29312

Re: newbie question : gedit as an ide

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 <jeanpierreda@gmail.com>
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 <R3j5s.75$lW1.12@newsfe18.iad>
References <R3j5s.75$lW1.12@newsfe18.iad>
From Devin Jeanpierre <jeanpierreda@gmail.com>
Date Sun, 16 Sep 2012 10:28:16 -0400
Subject Re: newbie question : gedit as an ide
To Mayuresh Kathe <mayuresh@kathe.in>
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 <python-list.python.org>
List-Unsubscribe <http://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list/>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.792.1347805739.27098.python-list@python.org> (permalink)
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

Show key headers only | View raw


On Sun, Sep 16, 2012 at 7:52 AM, Mayuresh Kathe <mayuresh@kathe.in> 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

Back to comp.lang.python | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

newbie question : gedit as an ide Mayuresh Kathe <mayuresh@kathe.in> - 2012-09-16 17:22 +0530
  Re: newbie question : gedit as an ide Chris Angelico <rosuav@gmail.com> - 2012-09-17 00:14 +1000
  Re: newbie question : gedit as an ide Devin Jeanpierre <jeanpierreda@gmail.com> - 2012-09-16 10:28 -0400

csiph-web