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: 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> <7eab4785-4db6-416f-9bc2-56470ab9d7db@googlegroups.com> Mime-Version: 1.0 (1.0) In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Mailer: iPad Mail (10B329) From: Michael Weylandt Subject: Re: better and user friendly IDE recommended? Date: Sun, 9 Mar 2014 19:58:32 -0400 To: =?utf-8?Q?Martin_Sch=C3=B6=C3=B6n?= 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: 1394409925 news.xs4all.nl 2877 [2001:888:2000:d::a6]:60288 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:68109 On Mar 9, 2014, at 19:22, Martin Sch=C3=B6=C3=B6n w= rote: > 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=20 (setq org-src-fontify-natively t) In your ~/.emacs or ~/.emacs.d/init.el file for syntax highlighting.=20 To get the 'regular' code editing, move point into a BEGIN_SRC block and typ= e "C-c ' " (Control-C followed by single quote). That will give you your nor= mal python setup in a sub-buffer. Getting Python autocompletion in Emacs is a= bit tricky, but there are many options.=20 Michael=