Search found 1066 matches

by Rickard Johansson
04 May 2015 10:04
Forum: Bug reports
Topic: Can't see indent-lines
Replies: 6
Views: 13917

Re: Can't see indent-lines

I also tried indent lines in AutoIt and well...
autoit-indentlines.png
autoit-indentlines.png (13.13 KiB) Viewed 13904 times
it seems to work at my end :?
by Rickard Johansson
04 May 2015 09:51
Forum: Bug reports
Topic: Can't see indent-lines
Replies: 6
Views: 13917

Re: Can't see indent-lines

Maybe the name of the feature is misleading. The lines display code structures like if-else statements and also indention. In some situations indention is ignored (e.g. line comments). Which is why syntax information is necessary. I'm sure it can be made to work for plain text files as well (the ind...
by Rickard Johansson
24 Apr 2015 14:28
Forum: Scripts
Topic: Current line index
Replies: 9
Views: 30891

Re: Current line index

Ah, well maybe this will work then :lol:

Code: Select all

...
  y := Document.CursorY;
  if (y < Document.LineCount - 1) then
    Document.SetSelection(0, y, 0 , y+1)
  else
    Document.SetSelection(Length(Document.Lines[y-1]), y-1, Length(Document.Lines[y]), y);
  Document.SelText := '';
...
by Rickard Johansson
24 Apr 2015 13:32
Forum: Scripts
Topic: Current line index
Replies: 9
Views: 30891

Re: Current line index

A simpler way to delete the current line would be add:

Code: Select all

...
  Document.SelectCurrentLine;
  Document.SelText := '';
...
Just saying :wink:
by Rickard Johansson
14 Apr 2015 16:41
Forum: Bug reports
Topic: ??? Copy/Paste in TextED File Explorer not working
Replies: 3
Views: 8745

Re: ??? Copy/Paste in TextED File Explorer not working

Windows Explorer seems to work the same way, so no bug.
by Rickard Johansson
14 Apr 2015 15:30
Forum: Bug reports
Topic: ??? Copy/Paste in TextED File Explorer not working
Replies: 3
Views: 8745

Re: Copy/Paste in TextED File Explorer not working

I can't reproduce it. I've tested both the explorer panels and file commander.
by Rickard Johansson
14 Apr 2015 15:09
Forum: Bug reports
Topic: FIXED: Split window syntax highlighting
Replies: 1
Views: 6043

Re: Split window syntax highlighting

Fixed. Thank you!
by Rickard Johansson
14 Apr 2015 13:24
Forum: Bug reports
Topic: FIXED? Find/Replace in selection works unstably
Replies: 5
Views: 10856

Re: Find/Replace in selection works unstably

If some of your problems occurred in Unix/Linux files I may have fixed your other issues as well.
by Rickard Johansson
14 Apr 2015 13:23
Forum: Bug reports
Topic: FIXED: Find/Replace bug
Replies: 4
Views: 9982

Re: Find/Replace bug

The issues are connected to some changes I made to handle mixed line breaks. It's been fixed. Thanks!
by Rickard Johansson
14 Apr 2015 12:29
Forum: Bug reports
Topic: FIXED? Find/Replace in selection works unstably
Replies: 5
Views: 10856

Re: Find/Replace in selection works unstably

The count issue in selection has been fixed...
by Rickard Johansson
13 Apr 2015 16:45
Forum: Bug reports
Topic: FIXED: Find/Replace bug
Replies: 4
Views: 9982

Re: Find/Replace bug

Did you mean replace or replace all? Do you know which options you used?
by Rickard Johansson
13 Apr 2015 16:41
Forum: Bug reports
Topic: FIXED? Find/Replace in selection works unstably
Replies: 5
Views: 10856

Re: Find/Replace in selection works unstably

I tried with some different options but I can't reproduce the issue. I did find a count problem with the option "Match whole word", but nothing else...
by Rickard Johansson
13 Apr 2015 16:04
Forum: Bug reports
Topic: FIXED: Find-Next after GoTo Line
Replies: 1
Views: 6096

Re: Find-Next after GoTo Line

Fixed. Thanks!
by Rickard Johansson
10 Apr 2015 21:50
Forum: Bug reports
Topic: FIXED: Options panel | help via "?" button | Dual Monitor
Replies: 3
Views: 9712

Re: ??? Options panel | help via "?" button | Dual Monitor

Fixed in v10.23 final.

It was caused by a bug in Microsoft HTML Help Control "hhctrl.ocx". I replaced the HTML popup help with normal tooltips.