Search found 10 matches

by engicoder
Fri Jul 15, 2011 3:19 pm
Forum: Reporting a Bug
Topic: Tabs as spaces not working as expected
Replies: 3
Views: 9725

I do love the Smart Indent feature. One oddity is that if the previous line starts with a TAB and I press enter at the end of that line and then TAB at the start of the next (with Tabs as spaces on) it will still insert a TAB character. I think the Smart Indent overrides it.
I happy to live with ...
by engicoder
Tue Jul 12, 2011 1:44 pm
Forum: Reporting a Bug
Topic: Tabs as spaces not working as expected
Replies: 3
Views: 9725

Tabs as spaces not working as expected

Zeus 3.97f on Windows 7

The C/C+ document type has the "Tabs as spaces" option checked. I assume that this option means that the tab character should never be inserted when pressing tab, but rather a number of spaces will be inserted.
I am seeing tab characters inserted when this option is checked ...
by engicoder
Wed Jul 06, 2011 6:33 pm
Forum: Reporting a Bug
Topic: First mouse over filename in tab remains
Replies: 4
Views: 13796

Thanks again Jussi!!
by engicoder
Thu Jun 30, 2011 3:40 am
Forum: Reporting a Bug
Topic: First mouse over filename in tab remains
Replies: 4
Views: 13796

Its really a pretty insignificant problem. I just make sure I drop off the tab bar before moving to the tab/file I am checking the filename of.
by engicoder
Wed Jun 29, 2011 3:14 pm
Forum: Reporting a Bug
Topic: First mouse over filename in tab remains
Replies: 4
Views: 13796

First mouse over filename in tab remains

Two problems:

1) If I mouse over one of the filenames in the document tabs, it nicely provides the full pathname of the file in a tool tip. If I then move horizontally to the next tab, the tool tip for the first file remains and the second appears behind it. The first tool tip remains as I move to ...
by engicoder
Mon Jun 13, 2011 9:29 pm
Forum: Reporting a Bug
Topic: Folding block comment changes format/color of code
Replies: 2
Views: 7834

Folding block comment changes format/color of code

Zeus 3.97f Windows 7
'.c' file

When a line code also contains the start of a block comment, folding that line will result in the formating/color of the code to change to that of the block comment:

Example:
void main()
{
printf ("Hello World!"); /* Some informative block
comment */

return ...
by engicoder
Fri Jun 03, 2011 12:11 am
Forum: Reporting a Bug
Topic: Intellisense not working for typedef structs
Replies: 3
Views: 9717

Thanks Jussi, your response time is fantastic.
by engicoder
Thu Jun 02, 2011 4:11 am
Forum: Reporting a Bug
Topic: Intellisense not working for typedef structs
Replies: 3
Views: 9717

Intellisense not working for typedef structs

Zeus 3.97e Windows 7

Intellisense does not seem to be working for typedef struct names. This seems to be the same type of issue as discussed here: http://www.zeusedit.com/zforum/viewtopic.php?t=29

Here is a sample:
typedef struct _mystruct
{
int member;
}MyStruct;


void main ( void ...
by engicoder
Thu May 19, 2011 4:43 pm
Forum: Reporting a Bug
Topic: Compile from workspace window compiles current document
Replies: 3
Views: 8414

Compile from workspace window compiles current document

I have a workspace with multiple files. For example:

- MyProject files - Header Files
- Resource Files
- Source Files main.c
helper.c If I open helper.c as the current document and then right click on main.c in the workspace window and select Compile , it will compile helper.c instead of main.c ...
by engicoder
Thu May 19, 2011 5:36 am
Forum: Tutorials, Tips and Tricks
Topic: Gnu Make Two Step
Replies: 3
Views: 20628

cmd.exe

As command.exe is no more, here is yet another two step method that will work with Gnu Make and cmd.exe

As with bfmitch's method, create two files (my names are different :D ):

gnumake.cmd
@echo off
start /min /w gnumake2.cmd %1 %2
type gnumake.out
del gnumake.out


gnumake2.cmd
@echo off ...