Re: ScintillaD 0.0.1

2011-11-11 Thread Andrej Mitrovic
No problem, I was just wondering if you knew what still needed work to sort out the bugs. On 11/11/11, zhang wrote: >> Hey zhang, >> >> I see you can now run SciteD, but it still crashes of course. Does >> ScintillaD have more bugs to fix, or just SciteD, or even both? > It's so sorry. I hasn't d

Re: ScintillaD 0.0.1

2011-11-11 Thread zhang
> Hey zhang, > > I see you can now run SciteD, but it still crashes of course. Does > ScintillaD have more bugs to fix, or just SciteD, or even both? It's so sorry. I hasn't debugged it out why it crashes. And I'm busy with my company's works. It will be a long time before continuing to work with

Re: ScintillaD 0.0.1

2011-11-09 Thread Trass3r
Any features you're planning to add that aren't in C++ Scintilla? (I'd *love* to be able to have support for elastic tabstops.) Never heard of elastic tabstops before. Thx for mentioning that.

Re: ScintillaD 0.0.1

2011-11-09 Thread Andrej Mitrovic
Hey zhang, I see you can now run SciteD, but it still crashes of course. Does ScintillaD have more bugs to fix, or just SciteD, or even both?

Re: ScintillaD 0.0.1

2011-09-03 Thread Andrej Mitrovic
On 9/3/11, zhang wrote: > Maybe, std.utf.toUTF16z() can't support converting from an normal UTF16 > string in D to null-terminated string in C/C++ directly. The new toUTFz (I'm not sure if that is the real name) in an upcoming release will support this.

Re: ScintillaD 0.0.1

2011-09-03 Thread zhang
> Zhang: > > > Project url: https://bitbucket.org/heromyth/scintillad > > Current status: Not runnable, but compilable and debuggable. > > Have you found something in D/Phobos that has caused you troubles? After your > experience do you desire something in D/Phobos to be different? > > Bye, > b

Re: ScintillaD 0.0.1

2011-09-03 Thread zhang
> "zhang" wrote in message > news:mailman.2638.1314964940.14074.digitalmar...@puremagic.com... > > ScintillaD is a D port of Scintilla which is implemented in C++. > > > > > > Project url: https://bitbucket.org/heromyth/scintillad > > Current status: Not runnable, but compilable and debuggable. >

Re: ScintillaD 0.0.1

2011-09-03 Thread zhang
I use VisualD as the IDE (which has two debug tools) for develop ScintillaD. Most current bugs are caused by too much null classs objects in D which are defined as auto variables not points in C++. See this http://www.digitalmars.com/d/archives/digitalmars/D/How_to_new_a_class_object_in_a_struc

Re: ScintillaD 0.0.1

2011-09-02 Thread bearophile
Zhang: > Project url: https://bitbucket.org/heromyth/scintillad > Current status: Not runnable, but compilable and debuggable. Have you found something in D/Phobos that has caused you troubles? After your experience do you desire something in D/Phobos to be different? Bye, bearophile

Re: ScintillaD 0.0.1

2011-09-02 Thread Nick Sabalausky
"zhang" wrote in message news:mailman.2638.1314964940.14074.digitalmar...@puremagic.com... > ScintillaD is a D port of Scintilla which is implemented in C++. > > Scintilla is an excellent editing component. > > The GUI toolkit which ScintillaD lies on is WindowsApi on Windows. > > The ScintillaD'

Re: ScintillaD 0.0.1

2011-09-02 Thread Andrej Mitrovic
Very, very cool! It builds lightning fast here. What's stopping it from running though? Have you ran into bugs or does the port need more work?

ScintillaD 0.0.1

2011-09-02 Thread zhang
ScintillaD is a D port of Scintilla which is implemented in C++. Scintilla is an excellent editing component. The GUI toolkit which ScintillaD lies on is WindowsApi on Windows. The ScintillaD's APIs are almost identical with Scintilla's. The changes to APIs are done mainly in order to use the pr