Search found 38 matches

by E Programmer
Fri Jan 06, 2012 3:39 pm
Forum: General
Topic: Fixed Folder Tabs
Replies: 2
Views: 8664

Well, if I had my druthers... I'd rather that the 'Tool...' tab moved instead of the File Tab.

Sumpin to cunsidr
by E Programmer
Fri Dec 30, 2011 8:52 pm
Forum: General
Topic: Fixed Folder Tabs
Replies: 2
Views: 8664

Fixed Folder Tabs

Using version 3.97g.

When I have several files open (say File1 File2 File3 File4) and have them lined up nicely in tabs along the top row, I do a "Find in File.." search (Control Q) from within File3

I get a nice result showing the item in all the files and the result is displayed to the right of ...
by E Programmer
Mon Oct 24, 2011 9:28 pm
Forum: Reporting a Bug
Topic: Don't debug lines with %n
Replies: 3
Views: 9585

Don't debug lines with %n

Jessie

I have associated this macro with my ~ key.

Lua Macro:
function key_macro()
local data_line=get_line_text()
debug_output("line"..data_line)
end

key_macro()


When I select this line from a file:
Data%n

Zeus crashes (I lose unsaved work).

If the line is
Data%m
it's ok. It seems to ...
by E Programmer
Fri Sep 23, 2011 2:51 pm
Forum: General
Topic: Navigator, Menu, RightClick macro lists
Replies: 3
Views: 9432

Is there a way to edit the list in Navigator page
The Navigator panel list all the macros and templates for the document type. This list is ordered alphabetically.


Thanks.. the 'Add to Popup Menu' was what I needed.

The macro list is not alphabetical in the Navigator Macro Panel.

It seems to ...
by E Programmer
Tue Sep 20, 2011 8:49 pm
Forum: General
Topic: Navigator, Menu, RightClick macro lists
Replies: 3
Views: 9432

Navigator, Menu, RightClick macro lists

When I add a macro in the macro template for a language it puts the macro in the Macros tab on the Navigator (in no particular order) and at the bottom of the Macros drop down menu.

Is there a way to edit the list in Navigator page (eg I don't need Sample Macro example) and the drop down menu?

Is ...
by E Programmer
Mon Sep 12, 2011 9:11 pm
Forum: Reporting a Bug
Topic: LUA debug_output
Replies: 10
Views: 21270

Works perfectly. Thanks.

You might want to set that upgrade page as a sticky. That way it would always be at the top of whatever forum you put it in.

Thanks again. :)
by E Programmer
Thu Sep 01, 2011 4:14 pm
Forum: Reporting a Bug
Topic: LUA debug_output
Replies: 10
Views: 21270

I think my example was confusing. :oops:

It may be working for you but I want to make sure you are using the proper example

Simple line with just ABC
ABC
Apply 1/2 tab macro get [4 spaces] ABC
ABC
Apply 1/2 tab macro get [tab] ABC
\tABC
Apply 1/2 tab macro should get [tab][4 spaces] ABC
\t ABC ...
by E Programmer
Tue Aug 09, 2011 7:33 pm
Forum: Reporting a Bug
Topic: LUA debug_output
Replies: 10
Views: 21270

Jussie. With each update there is a change. But still no cigar :)

Here is what I am trying to do. create a macro that gives 1/2 tab.

Now when the line begins with a tab, it should copy the tab and add 2,3,4 spaces depending on the tab setting (4 6 or 8 columns).

at 4 column tabs, it adds 5 ...
by E Programmer
Tue Aug 02, 2011 9:19 pm
Forum: Reporting a Bug
Topic: LUA debug_output
Replies: 10
Views: 21270

The above was when my tab spacing was set to 4 [and tabs as spaces is not checked]

If I set it to 6 it acts differently

Same starting file, same code, output is
abTABcd ef gh
TABaTAB bc
Dump:
0000: 61 62 09 63 64 20 20 20 20 65 66 20 20 20 20 67 | ab.cd ef g
0010: 68 0D 0A 09 61 09 20 62 63 0D ...
by E Programmer
Tue Aug 02, 2011 9:02 pm
Forum: Reporting a Bug
Topic: LUA debug_output
Replies: 10
Views: 21270

Found the associated problem

I'm trying to get my program to put in tabs as it once did in the macro.

Here is a slimmed down part of the code:

function replace_string()
local ln=get_line_text()
MoveLineHome()
if(string.len(ln)>0)then
-- delete the line, it will be replaced
MarkBlockSet()
MoveLineEnd()
MarkBlockReset ...
by E Programmer
Thu Jul 21, 2011 11:04 pm
Forum: Reporting a Bug
Topic: LUA debug_output
Replies: 10
Views: 21270

LUA debug_output

I recently upgraded ZEUS and had a LUA macro that worked fine. In the new ZEUS it does not work.

I went to debug (turned on debugging) and as soon as the code hits the debug_output function it crashed. debug_output used to work. In fact, I did not add the debug_output code, it had been there from ...
by E Programmer
Wed May 25, 2011 2:40 pm
Forum: General
Topic: Set INI file
Replies: 6
Views: 14755

I got the beta version working.

I found that zeus -i test.ini did not work, BUT zeus -i .\test.ini DID work. Yeah!
by E Programmer
Tue May 24, 2011 2:59 pm
Forum: General
Topic: Set INI file
Replies: 6
Views: 14755

I have a workaround

zeus.bat:

rem move to the drive/directory where I am working
call drive.bat
if exist zeus.ini goto CopyIt
goto None
:CopyIt
rem Copy local zeus.ini and replace the one Zeus will use
copy /Y zeus.ini c:\users\eet\AppData\Roaming\Xidicone\Zeus
:none
rem Do my editing
c ...
by E Programmer
Fri May 20, 2011 3:12 pm
Forum: General
Topic: Set INI file
Replies: 6
Views: 14755

So sad :( ... still not working.

This is what I did
1) to make sure there is no local ini file:
del zeus.ini
2) run zeus as suggested
c:\progra~1\zeus\zeus.exe -i zeus.ini
3) I then opened a file and closed zeus, checked for the ini
dir zeus.ini
result
File Not Found
4) I switched to ...
by E Programmer
Wed May 18, 2011 10:41 pm
Forum: General
Topic: Set INI file
Replies: 6
Views: 14755

Set INI file

Jussi

I'm installing your latest. In the past I have used

zeus.exe -izeus.ini

to use a different ini for each directory. This does not seem to be making any difference this time. I get the same result for

c:\progra~1\zeus\zeus.exe
and
c:\progra~1\zeus\zeus.exe -izeus.ini

I've also tried
c ...