Path: csiph.com!news.swapon.de!fu-berlin.de!uni-berlin.de!not-for-mail From: Chris Angelico Newsgroups: comp.lang.python Subject: Re: Which Python editor has this feature? Date: Mon, 11 Jan 2016 13:58:56 +1100 Lines: 15 Message-ID: References: <830f6f97-22dd-488c-9dd6-e9cd92844307@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Trace: news.uni-berlin.de YUFTffL7XxWGeVUWYe9lYAe9hvtbHFSb8duFD3S566Xg== 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; 'received:209.85.223': 0.03; 'subject:Python': 0.05; 'subject:editor': 0.07; 'cc:addr :python-list': 0.09; 'cursor': 0.09; 'tends': 0.09; 'python': 0.10; 'jan': 0.11; '12:59': 0.16; '2016': 0.16; 'bracket': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'mark,': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'somewhere.': 0.16; 'wrote:': 0.16; 'cc:2**0': 0.20; 'cc:addr:python.org': 0.20; 'accepted.': 0.20; 'work,': 0.21; 'matching': 0.23; 'patch': 0.24; 'header:In-Reply-To:1': 0.24; 'feature': 0.24; 'mon,': 0.24; 'helpful': 0.27; 'message- id:@mail.gmail.com': 0.27; 'start,': 0.27; 'this.': 0.28; 'coded': 0.29; 'indentation': 0.29; 'code': 0.30; 'probably': 0.31; 'useful': 0.33; 'jump': 0.33; 'lets': 0.33; 'point,': 0.33; 'file': 0.34; 'received:google.com': 0.35; 'something': 0.35; 'level': 0.35; 'but': 0.36; 'received:209.85': 0.36; 'subject:?': 0.36; 'pm,': 0.36; 'subject:: ': 0.37; 'really': 0.37; 'being': 0.37; 'received:209': 0.38; "didn't": 0.39; 'different': 0.63; 'between': 0.65; 'useful.': 0.72; 'upper': 0.76; 'chrisa': 0.84; 'hunt': 0.84; 'subject:this': 0.85; 'to:none': 0.91 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:cc :content-type:content-transfer-encoding; bh=9UvRInOInbQ5cmwb1oCpIeGt36af+zjObnMImoIvGlc=; b=IoxkR4SZPfYEjJ7WMoM00q1FZzeq64Zodu92bSry8cO4KrjfslgYAkVvqURMhQ6Tu7 6Dm9Vz4RM6ubTJvB1qvEYKdSbCu/UBQezBbVS9DV3YEnMoxFCshUU7QghJ5vPxBV5JVI dixKqmvsHog4rNE9t3sglJmU8y6MymKznh5GisY+Xgyh0Jf3PhxVuMEDkuJlbIbZptwo qMA5AgKMZZ2MJSgGaGTnFLNAnkPGY8sF9HOvlWJi30DHFAc0WhdLP7XKTOQgPMqNBXIN 8ifF7Y74vT0DrBrdhM/oFqq2gtV3J79hMtbd/UW4IUr6CP7ziFVj2i7fQr2TBBWqkFWo dkSQ== X-Received: by 10.107.40.76 with SMTP id o73mr49469352ioo.157.1452481136763; Sun, 10 Jan 2016 18:58:56 -0800 (PST) In-Reply-To: <830f6f97-22dd-488c-9dd6-e9cd92844307@googlegroups.com> X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Xref: csiph.com comp.lang.python:101455 On Mon, Jan 11, 2016 at 12:59 PM, wrote: > It lets you jump between the current cursor position and the line the upp= er level indentation start, something like the bracket matching in C editor= . Because of Python use indentation as its code block mark, It might be hel= pful if we can jump between different level of it:-) I coded this up as a patch for SciTE/Scintilla at one point, but it didn't get accepted. It was used for a while at my work, but never really settled in as being useful. Python code tends not to be as big and complex as C code often is, so it's not as useful to have a feature like this. If you want it, I can probably hunt down the patch file somewhere. ChrisA