Page 45 of 104

Posted: Tue Jan 16, 2007 8:31 am
by gnozal
Flype wrote:thank you for the update gnozal.

another request.

please, could you add an Shortcut key for TailBite ?

maybe [Maj + F5] or [Ctrl + F5].
It's already there (undocumented) : Shift + F9 -> TAILBITE
(why Shift + F9 : it comes after Shift + F7/F8 -> Compile manually/Resident).

Posted: Mon Jan 22, 2007 2:37 pm
by gnozal
Update

Changes :
- added splitted editor view : splits the editor window into 2 horizontal parts [language file entries 565-569]

Note : this feature has to be enabled in Preferences. The main code window can be splitted via the edit menu ['Split/Join editor window(s)'] or the right-click context menu ; the second code window is a view of the same source code. While it does no support all scintilla features, the second code window can be handy to compare two code portions of the same source file.

Posted: Mon Jan 22, 2007 3:00 pm
by davenull
gnozal wrote:Update

Changes :
- added splitted editor view : splits the editor window into 2 horizontal parts [language file entries 565-569]

Note : this feature has to be enabled in Preferences. The main code window can be splitted via the edit menu ['Split/Join editor window(s)'] or the right-click context menu ; the second code window is a view of the same source code. While it does no support all scintilla features, the second code window can be handy to compare two code portions of the same source file.
Nice, thanks :-) It seems that the zip archive is broken, though.

-davenull-

Posted: Mon Jan 22, 2007 3:25 pm
by gnozal
davenull wrote:Nice, thanks :-) It seems that the zip archive is broken, though.
-davenull-
I have uploaded it again.
Please retry.

Posted: Mon Jan 22, 2007 3:30 pm
by davenull
davenull wrote:
gnozal wrote:Update

Changes :
- added splitted editor view : splits the editor window into 2 horizontal parts [language file entries 565-569]

Note : this feature has to be enabled in Preferences. The main code window can be splitted via the edit menu ['Split/Join editor window(s)'] or the right-click context menu ; the second code window is a view of the same source code. While it does no support all scintilla features, the second code window can be handy to compare two code portions of the same source file.
Nice, thanks :-) It seems that the zip archive is broken, though.

-davenull-
Works now.

-davenull-

Posted: Wed Jan 24, 2007 10:49 am
by gnozal
Update

Changes :
- fixed an info panel resizing bug in splitted editor mode
- added 'Build' spinbox in 'Project options' to modify the source build

Posted: Wed Jan 24, 2007 11:47 am
by dige
@gnozal: there is a new bug:

Code: Select all

  For x=0 To 320 
    For y=0 To 200 
      Plot(x,y)
    Next y
  Next x
Go on the end of some line and press delete key, so that the
next codeline comes up.
jaPBe is very hungry and will eat some chars...
It does not happen, if there is no space in front like:

Code: Select all

For x=0 To 320 
  For y=0 To 200 
    Plot(x,y)
  Next y
Next x

Posted: Wed Jan 24, 2007 12:02 pm
by davenull
dige wrote:@gnozal: there is a new bug:

Code: Select all

  For x=0 To 320 
    For y=0 To 200 
      Plot(x,y)
    Next y
  Next x
Go on the end of some line and press delete key, so that the
next codeline comes up.
jaPBe is very hungry and will eat some chars...
It does not happen, if there is no space in front like:

Code: Select all

For x=0 To 320 
  For y=0 To 200 
    Plot(x,y)
  Next y
Next x
Interesting .. that doesn't happen to me. I tried several times.

-davenull-

Posted: Wed Jan 24, 2007 12:26 pm
by dige
Mark the whole code and press the 'Tab' key to increase indent.
then try again ...

Code: Select all

  For x=0 To 320
    For y=0 To 200(x,y)
    Next y
  Next x 
The word 'Plot' is going lost after pressing the
delete key behind 'For y=0 To 200'

Posted: Wed Jan 24, 2007 12:54 pm
by gnozal
Confirmed. Only if a 2nd scintilla is active (splitted window or codeview tab).

I am on it.

Posted: Wed Jan 24, 2007 2:26 pm
by gnozal
Should be fixed

Posted: Wed Jan 24, 2007 3:08 pm
by dige
unfortunately not, have still the same problem here and now strange
problems with folding ...

Posted: Wed Jan 24, 2007 3:22 pm
by gnozal
dige wrote:unfortunately not, have still the same problem here and now strange
problems with folding ...
I can't reproduce 'your new bug' and don't see any folding problems.
I have uploaded build 619, I hope it works better for you.
Note that you can select 'No extra code window' in preferences and restart ; any (new) problem should be gone.

Posted: Mon Jan 29, 2007 2:22 pm
by gnozal
Update

Changes :
- added Aliases
An alias is like a shortcut or an immediate macro. When you type the alias in the editor, it will be immediatly replaced by the text you have chosen.
Example : you define the alias Prc/Procedure ; if you type prc in the editor, it will be replaced by Procedure.

Posted: Mon Jan 29, 2007 2:29 pm
by dige
Sounds good ... I'll test it :)