Gamestudio Links
Zorro Links
Newest Posts
Data from CSV not parsed correctly
by EternallyCurious. 04/18/24 10:45
StartWeek not working as it should
by Zheka. 04/18/24 10:11
folder management functions
by VoroneTZ. 04/17/24 06:52
lookback setting performance issue
by 7th_zorro. 04/16/24 03:08
zorro 64bit command line support
by 7th_zorro. 04/15/24 09:36
Zorro FIX plugin - Experimental
by flink. 04/14/24 07:48
Zorro FIX plugin - Experimental
by flink. 04/14/24 07:46
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
2 registered members (EternallyCurious, howardR), 646 guests, and 0 spiders.
Key: Admin, Global Mod, Mod
Newest Members
EternallyCurious, 11honza11, ccorrea, sakolin, rajesh7827
19046 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Page 3 of 5 1 2 3 4 5
Re: liteEditor - v 1.1: Update available [Re: Kartoffel] #415003
01/12/13 17:19
01/12/13 17:19
Joined: Jul 2008
Posts: 894
T
TechMuc Offline OP
User
TechMuc  Offline OP
User
T

Joined: Jul 2008
Posts: 894
Thanks a lot Kartoffel. I'll try to take care of it tomorrow. Started a real life job two months ago.. Maaan i wish I could study again =)

Re: liteEditor - v 1.1: Update available [Re: TechMuc] #415007
01/12/13 18:26
01/12/13 18:26
Joined: Jul 2008
Posts: 894
T
TechMuc Offline OP
User
TechMuc  Offline OP
User
T

Joined: Jul 2008
Posts: 894
Quote:
- If I change the background color and restart LED it's white again.


confirmed and fixed.

Quote:
When using the auto-complete feature and theres text behind the word which gets inserted it gets written over.

confirmed and fixed.

Quote:
- In this case the auto-complete feature shuld suggest the var "max_weight" but it doesn't:


confirmed.


All bugs will be fixed in the version tomorrow evening.

Re: liteEditor - v 1.1: Update available [Re: TechMuc] #415009
01/12/13 19:06
01/12/13 19:06
Joined: Jun 2009
Posts: 2,210
Bavaria, Germany
Kartoffel Offline
Expert
Kartoffel  Offline
Expert

Joined: Jun 2009
Posts: 2,210
Bavaria, Germany
wow, that was fast shocked

awesome user support grin


POTATO-MAN saves the day! - Random
liteEditor - v 1.2: Update available [Re: Kartoffel] #415076
01/13/13 16:17
01/13/13 16:17
Joined: Jul 2008
Posts: 894
T
TechMuc Offline OP
User
TechMuc  Offline OP
User
T

Joined: Jul 2008
Posts: 894
Hi,

A new version has been released today. Please download from http://www.dev-software.com/led/liteEdit.exe .
All Features have been implemented / all bugs have been fixed. You can now paste text without modifying the tabs using "CTRL+ALT+V".

Regards,
Timo

Last edited by TechMuc; 01/13/13 16:17.
Re: liteEditor - v 1.2: Update available [Re: TechMuc] #415081
01/13/13 17:55
01/13/13 17:55
Joined: Jul 2001
Posts: 6,904
H
HeelX Offline
Senior Expert
HeelX  Offline
Senior Expert
H

Joined: Jul 2001
Posts: 6,904
Hi, I see that there is formatting feature implemented. Where can I customize it?

Re: liteEditor - v 1.2: Update available [Re: HeelX] #415085
01/13/13 18:12
01/13/13 18:12
Joined: Jul 2008
Posts: 894
T
TechMuc Offline OP
User
TechMuc  Offline OP
User
T

Joined: Jul 2008
Posts: 894
Can you give me a list of what you would like to customize?

Re: liteEditor - v 1.2: Update available [Re: TechMuc] #415092
01/13/13 19:26
01/13/13 19:26
Joined: Sep 2009
Posts: 993
Budapest
Aku_Aku Offline
User
Aku_Aku  Offline
User

Joined: Sep 2009
Posts: 993
Budapest
I downloaded the latest LED.
How can i load the sedprj projects with the editor?

Re: liteEditor - v 1.2: Update available [Re: Aku_Aku] #415096
01/13/13 19:58
01/13/13 19:58
Joined: Jul 2008
Posts: 894
T
TechMuc Offline OP
User
TechMuc  Offline OP
User
T

Joined: Jul 2008
Posts: 894
sedprj files are not supported. Of course i could write an import script, but I do not really see benefits here.

Re: liteEditor - v 1.2: Update available [Re: TechMuc] #415097
01/13/13 20:02
01/13/13 20:02
Joined: Jul 2001
Posts: 6,904
H
HeelX Offline
Senior Expert
HeelX  Offline
Senior Expert
H

Joined: Jul 2001
Posts: 6,904
Originally Posted By: TechMuc
Can you give me a list of what you would like to customize?


I really like it is done in Eclipse CDT. It is done like this:


You have different tabs for categories like indentation, braces, whitespace, etc. and othe options on the left and an example source code in a window on the right.

I could write down all the stuff, but it might be easier if you check it out yourself: go here and download the 32- or 64-bit version (depends on your OS), start eclipse.exe, open Window/Preferences and select in the tree C,C++/Code Style/Formatter, click on Edit... and you can see it for yourself.

Personally, I most often changes the settings for:

  • tab size
  • indent statements withing function bodies, blocks, switch bodies, case bodies, breaks
  • braces always on the next line for if, else, blocks in case statements and switch statements
  • whitespace in function heads before opening parenthesis
  • whitespace after opening- and before closing brace in initializer lists
  • no whitespace after typecast closing parenthesis
  • insert new line before "else" in an "if" statement
  • in if-else-if statements each statement (if, else) in a new line and indented
  • all ifs with braces, even simple ones
  • line wrapping at column x (e.g. 80)
  • indentation for wrapped lines = 2 tabs
  • auto-wrapping of comment blocks

Re: liteEditor - v 1.2: Update available [Re: TechMuc] #415103
01/13/13 21:03
01/13/13 21:03
Joined: Sep 2009
Posts: 993
Budapest
Aku_Aku Offline
User
Aku_Aku  Offline
User

Joined: Sep 2009
Posts: 993
Budapest
Originally Posted By: TechMuc
sedprj files are not supported. Of course i could write an import script, but I do not really see benefits here.

Of course, you don't.

Page 3 of 5 1 2 3 4 5

Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1