Search found 12 matches

by kosthala
04 Oct 2024 14:10
Forum: Bugs
Topic: FIXED: Code explorer bug
Replies: 4
Views: 2396

Re: Code explorer bug

I can't send you the file, but I have created a striped version of it where you can see the problem
by kosthala
04 Oct 2024 08:52
Forum: Bugs
Topic: FIXED: Code explorer bug
Replies: 4
Views: 2396

FIXED: Code explorer bug

I have a large C file (about 14000 lines) with about 200 functions.
The code explorer does not show all functions. However, If I copy one of the functions that doesn't appear into a new file, then it appears in the code explorer.
by kosthala
04 Oct 2024 08:50
Forum: Bugs
Topic: FIXED: User toolbar bug
Replies: 1
Views: 1783

FIXED: User toolbar bug

If I customize the user toolbar to remove some items, it doesn't preserve the changes I've made on the next launch of the program.
This happens only if I have put a custom tool on it.
by kosthala
08 Nov 2022 15:14
Forum: Features
Topic: DONE: Tool output
Replies: 13
Views: 11402

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: 6156

Re: DONE: Code explorer enhancement

Thank you very much!!!
by kosthala
02 Mar 2022 14:03
Forum: Features
Topic: DONE: Code explorer enhancement
Replies: 5
Views: 6156

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: 6156

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
02 Mar 2019 16:27
Forum: Scripts
Topic: Document.ReplaceAll not working
Replies: 8
Views: 21653

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: 21653

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: 21653

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: 21653

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: 21653

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?