Search found 21 matches

by aphor
Wed Jan 08, 2014 10:57 pm
Forum: Reporting a Bug
Topic: Possible issue with preserving UTF-8 BOM
Replies: 5
Views: 33150

That appears to fix it. I'll update this thread if I see any issues, but I'm 5 files in so far and haven't seen anything wrong.
by aphor
Wed Jan 08, 2014 10:54 pm
Forum: Comments and Suggestions
Topic: Alphabetic sorting of Documents in Navigator
Replies: 7
Views: 37626

Exactly what I wanted. Thanks!
by aphor
Tue Jan 07, 2014 7:25 pm
Forum: Reporting a Bug
Topic: Possible issue with preserving UTF-8 BOM
Replies: 5
Views: 33150

Thanks for looking.

Following your steps below, I also cannot repro the issue.

If I use "C# Document Type" as the second file type (where you are using "Text Document Type"), though, I see the behavior I originally reported.

I tried going through the full options set for both the text and c ...
by aphor
Mon Jan 06, 2014 8:52 pm
Forum: Comments and Suggestions
Topic: Alphabetic sorting of Documents in Navigator
Replies: 7
Views: 37626

I found an edge case that doesn't behave as expected. If I have:
c:\Dir1\File1.txt
c:\Dir2\File1.txt (note, same filename)
and open both, I still see the old behavior of the files moving around in the "Documents" folder.

Not a big deal, I just wanted to point it out in case the fix is trivial ...
by aphor
Mon Jan 06, 2014 8:49 pm
Forum: Reporting a Bug
Topic: Possible issue with preserving UTF-8 BOM
Replies: 5
Views: 33150

Possible issue with preserving UTF-8 BOM

Both "Editor Options" and "Document Options" contain a section for "File Encoding".

If I set:
- "Editor Options"->"File Encoding"="Automatic" with "Add BOM" checked
- "Document Options"->"File Encoding"="Use editor defaults" ("Add BOM" cannot be selected with this option)
then I expected:
- the ...
by aphor
Fri Jan 03, 2014 8:36 pm
Forum: Code Folding
Topic: Code folding and text selections
Replies: 7
Views: 40285

Confirmed fixed. Thanks!
by aphor
Fri Jan 03, 2014 8:34 pm
Forum: Reporting a Bug
Topic: Code Folding expand/collapse icons and the Documents Bar
Replies: 2
Views: 27032

Confirmed fixed. Thanks!
by aphor
Thu Jan 02, 2014 11:07 pm
Forum: Reporting a Bug
Topic: Code Folding expand/collapse icons and the Documents Bar
Replies: 2
Views: 27032

Code Folding expand/collapse icons and the Documents Bar

If I turn off the "Documents Bar", close Zeus, and then re-open it, the code fold margin no longer displays the expand/collapse icons. (Code correctly folds if you click where the icon should be.) Turning the bar on then off again fixes the issue.

Not a big deal, but thought I'd report it.
by aphor
Thu Jan 02, 2014 9:48 pm
Forum: Comments and Suggestions
Topic: Alphabetic sorting of Documents in Navigator
Replies: 7
Views: 37626

Works beautifully, thanks! No more searching the list for my files :D
by aphor
Thu Jan 02, 2014 9:46 pm
Forum: Code Folding
Topic: Code folding and text selections
Replies: 7
Views: 40285

Your test macro function key_macro()
screen_update_disable()
-- should add the string to this line of the test file
-- bool AnotherFunction()
set_line_pos(8)
MoveLineHome()
print("Start of line: ")
screen_update_enable()
screen_update()
end

key_macro() -- run the macro works ...
by aphor
Sun Dec 22, 2013 7:53 am
Forum: General
Topic: Help transitioning from CodeWright
Replies: 7
Views: 17222

I like the smart but simple way you've found to handle the variable width white space characteristics of tabs
Thanks. I'm a lazy programmer - the simpler I can do something, the better. :D
by aphor
Sun Dec 22, 2013 7:50 am
Forum: Code Folding
Topic: Code folding and text selections
Replies: 7
Views: 40285

Thanks!
by aphor
Sun Dec 22, 2013 1:03 am
Forum: Code Folding
Topic: Code folding and text selections
Replies: 7
Views: 40285

Okay, so I can't walk away from an unresolved problem...

I believe set_line_pos() is the culprit here.

function key_macro()
local lineToSet = get_marked_top()
set_line_pos(lineToSet)

message
(
string.format
(
"Selected range [%d:%d]. Current line: %d",
get_marked_top(),
get_marked ...
by aphor
Sun Dec 22, 2013 12:07 am
Forum: Code Folding
Topic: Code folding and text selections
Replies: 7
Views: 40285

Code folding and text selections

I'm not sure if this should be here or under the bugs topic. Feel free to relocate this if I chose wrong...

I found a problem with my SlideIn/Out scripts that also appears to affect Add/Remove Comments. comment_range() appears to work on display line, not file line:

For example, if I have

public ...
by aphor
Sat Dec 21, 2013 5:47 am
Forum: Comments and Suggestions
Topic: Alphabetic sorting of Documents in Navigator
Replies: 7
Views: 37626

Alphabetic sorting of Documents in Navigator

I'd really like to see an option to keep the files listed under Documents in the Navigator pane sorted alphabetically.

"Options -> Editor Options -> General -> Automatically sort files on open"
only seems to apply to the tabs in the documents bar.

If I only use the Documents bar to change between ...