Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: Tim Chase Newsgroups: comp.lang.python Subject: Re: best text editor for programming Python on a Mac Date: Sun, 19 Jun 2016 06:36:09 -0500 Lines: 16 Message-ID: References: <7fdf0a4d-64ef-495e-82ff-18707e3ca429@googlegroups.com> <20160619063609.101b3f35@bigbox.christie.dr> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Trace: news.uni-berlin.de RPV12vVXhxLYjS7iia7VEQKV5R/BdPc9aMA/PdaIY1DQ== 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; 'anyway.': 0.04; 'subject:text': 0.04; 'subject:Python': 0.05; 'modified': 0.05; '(using': 0.07; 'subject:editor': 0.07; 'cursor': 0.09; "system's": 0.09; '"insert': 0.16; '-tkc': 0.16; 'from:addr:python.list': 0.16; 'from:addr:tim.thechases.com': 0.16; 'from:name:tim chase': 0.16; 'rather,': 0.16; 'received:10.104': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'subject:Mac': 0.16; 'subject:programming': 0.16; 'wrote:': 0.16; 'header:In-Reply-To:1': 0.24; 'sense': 0.26; 'correct': 0.28; 'function': 0.28; 'character': 0.29; 'putting': 0.30; 'probably': 0.31; 'possibly': 0.32; 'michael': 0.33; 'text': 0.35; 'but': 0.36; 'to:addr:python-list': 0.36; 'subject:: ': 0.37; 'received:10': 0.37; 'charset:us-ascii': 0.37; 'wrong': 0.38; 'whatever': 0.39; 'does': 0.39; 'to:addr:python.org': 0.40; 'where': 0.40; 'your': 0.60; 'behavior': 0.61; 'real': 0.62; 'between': 0.65; 'received:23': 0.84; 'lone': 0.91 X-Sender-Id: wwwh|x-authuser|tim@thechases.com X-Sender-Id: wwwh|x-authuser|tim@thechases.com X-MC-Relay: Neutral X-MailChannels-SenderId: wwwh|x-authuser|tim@thechases.com X-MailChannels-Auth-Id: wwwh X-MC-Loop-Signature: 1466336171988:958421058 X-MC-Ingress-Time: 1466336171987 In-Reply-To: X-Mailer: Claws Mail 3.11.1 (GTK+ 2.24.25; x86_64-pc-linux-gnu) X-AuthUser: tim@thechases.com X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Mailman-Original-Message-ID: <20160619063609.101b3f35@bigbox.christie.dr> X-Mailman-Original-References: <7fdf0a4d-64ef-495e-82ff-18707e3ca429@googlegroups.com> Xref: csiph.com comp.lang.python:110147 On 2016-06-18 22:56, Michael Torrie wrote: > And I got it wrong anyway. Both ed and vim either put the cursor > between characters (insert mode), or on the character (command > mode). Probably made sense at the time. Correct for vi/vim, but not ed which has no real concept of a characterwise "insert mode". Rather, "insert mode" is where you enter one line at a time (using whatever your system's line-input function does for cursor display; with behavior possibly modified if you use `rlwrap`) until you finish entering your text by putting a lone period on a line. -tkc