POV-Ray : Newsgroups : povray.beta-test : 3.7RC6 Text Editor bug : 3.7RC6 Text Editor bug Server Time
16 May 2024 06:04:14 EDT (-0400)
  3.7RC6 Text Editor bug  
From: Gregory A Lundberg
Date: 20 Nov 2012 23:05:01
Message: <web.50ac5225ef20c58884c279110@news.povray.org>
Trying to collapse lines to suit my personal style, the editor deletes
non-highlighted text.

Consider the lines:

    pigment {
      color <1,1,1>
    }

What I want to end up with is

    pigment { color <1,1,1> }

I tab to the end of the pigment line, just right of the opening brace, hold down
Shift and tab to the end of the white-space preceding the color keyword, then
press Space.  This should change the text to read as:

    pigment { color <1,1,1>
    }

But instead the editor removed additional text and the result was

    pigment { 1,1,1>
    }

It appears the editor is moving down a full line, to the same column, and not
replacing only the highlighted segment, as expected.

The workaround, in this case, is to avoid using highlighting and make the
changes character-by-character.

This only appears to be an issue when end-of-line appears in the highlighted
text.

My apologies if this is a duplicate issue.


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.