o973797475 / coffee-bytes

Automatically exported from code.google.com/p/coffee-bytes
0 stars 0 forks source link

annoying editor problem #26

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Eclipse 3.0
Coffee-Bytes: 1.0.5a

Scenario: create a new class (see below exacty how it
looks), declare a new method and after the left
paranthesis a little pause is made. At this moment the
whole source is collapsed in the beginning comment.
The bug is annoying as there is no way to go back
(later I have discovered that presing Undo, Redo brings
you back on the typing position) to the point you are
typing being required to close and reopen the source in
the editor (the saved version is correct).

Template:
/*
* $Id$
*/
package net.noco.dtogen.util;

/**
* Class usage XXX
*
* @version $Revision$
*/
public class Test {
public static final boolean isTrue(
}

results in
/*[...]
public class Test {[...]
public static final void test([...]
}

In the above scenario: another settings: Advanced:
Minimum Number of Lines 2, checked method, control
structures, types.

After checking comments, in the same scenario the
source looks:
/*[...]
}

Original issue reported on code.google.com by the.mind...@gmail.com on 21 Oct 2006 at 8:43