Search found 11 matches

by kosthala
08 Nov 2022 15:14
Forum: Features
Topic: DONE: Tool output
Replies: 13
Views: 3146

DONE: Tool output

Is it possible to capture a tool output (DOS command) in real-time in messages pane instead of waiting for the tool to finish first?
by kosthala
14 Mar 2022 07:49
Forum: Features
Topic: DONE: Code explorer enhancement
Replies: 5
Views: 3027

Re: DONE: Code explorer enhancement

Thank you very much!!!
by kosthala
03 Mar 2022 12:24
Forum: Bugs
Topic: FIXED: Fold bug
Replies: 1
Views: 1030

FIXED: Fold bug

I have found a small folding bug.
Please take a look at the attached file.
When I fold the "do" statement, it folds until the "MyLabel" (it should fold until the "while" statement).
by kosthala
02 Mar 2022 14:03
Forum: Features
Topic: DONE: Code explorer enhancement
Replies: 5
Views: 3027

Re: Code explorer enhancement

I wonder how I missed that...

Thanks.
by kosthala
25 Feb 2022 15:39
Forum: Features
Topic: DONE: Code explorer enhancement
Replies: 5
Views: 3027

DONE: Code explorer enhancement

Many times I have found myself in the situation of searching for a long time to find the name of a function in code explorer, especially in files with many functions. It would be nice to add a search box in code explorer, in order to make a function easier to locate. When the user starts typing, the...
by kosthala
08 Oct 2021 08:18
Forum: Bugs
Topic: FIXED: Blank text document bug
Replies: 1
Views: 1362

FIXED: Blank text document bug

Hello, I have checked the option to show a blank text document on startup. I have also checked the option to close the program to system tray. Now I close all open documents and close the program (it goes to system tray). Now when I restore the program from tray, it shows 3 blank text documents inst...
by kosthala
02 Mar 2019 16:27
Forum: Scripts
Topic: Document.ReplaceAll not working
Replies: 8
Views: 13410

Re: Document.ReplaceAll not working

This is very weird. I copy the code from Rickard's script's and now is working.
But my first post script was exactly the same as Rickard's. :? :? :?
by kosthala
02 Mar 2019 12:53
Forum: Scripts
Topic: Document.ReplaceAll not working
Replies: 8
Views: 13410

Re: Document.ReplaceAll not working

Please see my first post, i have already include begin - end pair.
by kosthala
01 Mar 2019 22:09
Forum: Scripts
Topic: Document.ReplaceAll not working
Replies: 8
Views: 13410

Re: Document.ReplaceAll not working

I followed your instructions and i get the attached message
by kosthala
01 Mar 2019 08:08
Forum: Scripts
Topic: Document.ReplaceAll not working
Replies: 8
Views: 13410

Re: Document.ReplaceAll not working

I'm sorry, i meant leading spaces...which is not working

Code: Select all

begin
  Document.ReplaceAll('^[ \t]+','', false, false, true);
end.
by kosthala
28 Feb 2019 15:13
Forum: Scripts
Topic: Document.ReplaceAll not working
Replies: 8
Views: 13410

Document.ReplaceAll not working

Hello,

I have created a very simple Pascal script in order to remove trailing spaces:

Code: Select all

begin
  Document.ReplaceAll('^[ \t]+','', false, false, true);
end.
But when i run the script nothing happens. In previous versions the script was working fine.
Can you help me?