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


Groups > comp.lang.python > #68109

Re: better and user friendly IDE recommended?

Path csiph.com!newsfeed.hal-mli.net!feeder3.hal-mli.net!newsfeed.hal-mli.net!feeder1.hal-mli.net!newsfeed.xs4all.nl!newsfeed2.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail
Return-Path <michael.weylandt@gmail.com>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.019
X-Spam-Evidence '*H*': 0.96; '*S*': 0.00; 'syntax': 0.04; 'highlighting': 0.09; 'cc:addr:python-list': 0.11; 'martin': 0.11; 'python': 0.11; 'received:192.168.1.4': 0.16; 'subject:user': 0.16; 'followed': 0.16; 'language': 0.16; 'wrote:': 0.18; 'bit': 0.19; 'options.': 0.19; 'programming': 0.22; 'cc:addr:python.org': 0.22; 'cc:2**0': 0.24; 'header:In-Reply-To:1': 0.27; 'point': 0.28; 'michael': 0.29; 'code': 0.31; 'getting': 0.31; 'file': 0.32; 'etc': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'there': 0.35; 'skip:~ 10': 0.36; 'doing': 0.36; 'subject:?': 0.36; 'skip:o 20': 0.38; 'message-id:@gmail.com': 0.38; 'use.': 0.39; 'header:Message-Id:1': 0.63; 'to:addr:gmail.com': 0.65; 'mar': 0.68; 'respect': 0.70; '2014,': 0.84; 'subject:recommended': 0.84
DKIM-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=references:mime-version:in-reply-to:content-type :content-transfer-encoding:message-id:cc:from:subject:date:to; bh=mDBYalbdWzn7QmNLUCrx1EYh0SrW6/SV0HKBOTonSw4=; b=RjklaTf4wsgcw8XMtpvohKsobQ8jHGnBa1ANbVCctOYqw39WgiSpyqoVFg9CcsPyoD CpjFb6uiEotgIWdiA15pJ5aWhKtWGzvkFclBOZYP5bWR9CC6s3H8qqPCB8WoZabkVdlu zvFHS0Y4pgWjRg4fz1zY40cWXzy/riJHPhEONzxRv4X92tSgj6vTGk61c5BGK7lk3o+n uZnCpTvFJi3Sm43kmYTabh+q2qinULi2KGKhr9d/XFMWBAq3muP+KqJdaAWv+tmtDaSN bBfjA9C78aqDFb+xm0WbxOb6ls/D96diS0wNnCPYjMoZ34OXzP3/bU1Qtaebzq/SSjCD jhIQ==
X-Received by 10.224.11.136 with SMTP id t8mr37455851qat.26.1394409512857; Sun, 09 Mar 2014 16:58:32 -0700 (PDT)
References <091bbe36-8cf9-412f-b7e9-2b3cc89dd363@googlegroups.com> <da303c22-464f-4b01-96ec-a79be95bff48@googlegroups.com> <bm4rlhFl3i0U1@mid.individual.net> <7eab4785-4db6-416f-9bc2-56470ab9d7db@googlegroups.com> <bm7ghfF7nodU1@mid.individual.net> <bo4bdhF6retU1@mid.individual.net>
Mime-Version 1.0 (1.0)
In-Reply-To <bo4bdhF6retU1@mid.individual.net>
Content-Type text/plain; charset=utf-8
Content-Transfer-Encoding quoted-printable
X-Mailer iPad Mail (10B329)
From Michael Weylandt <michael.weylandt@gmail.com>
Subject Re: better and user friendly IDE recommended?
Date Sun, 9 Mar 2014 19:58:32 -0400
To Martin Schöön <martin.schoon@gmail.com>
Cc "python-list@python.org" <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 <https://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 <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.7974.1394409925.18130.python-list@python.org> (permalink)
Lines 19
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1394409925 news.xs4all.nl 2877 [2001:888:2000:d::a6]:60288
X-Complaints-To abuse@xs4all.nl
Xref csiph.com comp.lang.python:68109

Show key headers only | View raw


On Mar 9, 2014, at 19:22, Martin Schöön <martin.schoon@gmail.com> wrote:
> What you don't get as far as I can see is code completion,
> syntax highlighting etc since Emacs is doing this with
> respect to Orgmode and not the programming language you
> use.

Put 

(setq org-src-fontify-natively t)

In your ~/.emacs or ~/.emacs.d/init.el file for syntax highlighting. 

To get the 'regular' code editing, move point into a BEGIN_SRC block and type "C-c ' " (Control-C followed by single quote). That will give you your normal python setup in a sub-buffer. Getting Python autocompletion in Emacs is a bit tricky, but there are many options. 

Michael

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


Thread

Re: better and user friendly IDE recommended? Martin Schöön <martin.schoon@gmail.com> - 2014-02-13 21:27 +0000
  Re: better and user friendly IDE recommended? Rustom Mody <rustompmody@gmail.com> - 2014-02-13 19:52 -0800
    Re: better and user friendly IDE recommended? Martin Schöön <martin.schoon@gmail.com> - 2014-02-14 21:35 +0000
      Re: better and user friendly IDE recommended? Martin Schöön <martin.schoon@gmail.com> - 2014-03-09 23:22 +0000
        Re: better and user friendly IDE recommended? Michael Weylandt <michael.weylandt@gmail.com> - 2014-03-09 20:01 -0400
        Re: better and user friendly IDE recommended? Michael Weylandt <michael.weylandt@gmail.com> - 2014-03-09 19:58 -0400

csiph-web