January 30, 2014
On Thursday, 30 January 2014 at 13:02:53 UTC, Casper Færgemand wrote:
> Is it possible to get an updated build.bat file that doesn't rely on 64bit? There also seems to be files mentioned in the script that don't exist anymore.

And that would be "style.d". After removing it from the script along with "-m64", I get this:

$ build.bat
OPTLINK (R) for Win32  Release 8.00.13
Copyright (C) Digital Mars 1989-2010  All rights reserved.
http://www.digitalmars.com/ctg/optlink.html
dscanner.obj(dscanner)
 Error 42: Symbol Undefined _D8analysis3run7analyzeFS3std5stdio4FileAAyabZv
dscanner.obj(dscanner)
 Error 42: Symbol Undefined _D8analysis3run11syntaxCheckFS3std5stdio4FileAAyaZv
dscanner.obj(dscanner)
 Error 42: Symbol Undefined _D8analysis3run12__ModuleInfoZ
--- errorlevel 3
January 30, 2014
On Thursday, 30 January 2014 at 13:07:33 UTC, Casper Færgemand wrote:
> On Thursday, 30 January 2014 at 13:02:53 UTC, Casper Færgemand wrote:
>> Is it possible to get an updated build.bat file that doesn't rely on 64bit? There also seems to be files mentioned in the script that don't exist anymore.
>
> And that would be "style.d". After removing it from the script along with "-m64", I get this:

Try again now.

https://github.com/Hackerpilot/Dscanner/issues/90
January 30, 2014
On Tuesday, 28 January 2014 at 09:58:27 UTC, Brian Schott wrote:

> New DCD and DScanner betas are  ready for testing.

The Zeus IDE dot completion, parenthesis completion and goto declaration scripts have been updated and are all working fine with this latest DCD release.

As yet there is no script for the new DCD Doc Comment display feature.

For more details see here: http://www.zeusedit.com/zforum/viewtopic.php?t=7020

January 31, 2014
New tags:
https://github.com/Hackerpilot/Dscanner/tree/0.1.0-beta2
https://github.com/Hackerpilot/DCD/tree/0.3.0-beta3

DScanner Changes:
* #90: Windows batch file out of sync with build script
* #89: Infinite loop in identifier lexing function

DCD Changes:
* DScanner updated to 0.1.0-beta2
* #102: Fully qualified symbol lookup only works with one module at a time
* #100: Documentation display didn't actually work due to a lexer bug
* #99: Call tips not shown for member functions
* #97: Updated Lumen (ktexteditor plugin)
* #94: Lexer gets stuck in infinite loop (DScanner #89)
* #92: DCD triggers code generation bug in DMD
* #91: Add template and mixin template to completion kinds in README.md

P.S.

I'm still waiting for some brave/foolish Emacs and Vim users to step up and update the DCD plugins for their favorite editors. Textadept, Zeus, Sublime, and Kate are up to date as far as I know.
January 31, 2014
> P.S. Only the Textadept module has support for the new --symbolLocation and --doc switches. If you're one of the excellent people who wrote one of the other plugins, I'd appreciate your help adding support for these features to your favorite editor before a non-beta release is tagged.

I adedd support for --doc yesterday to lumen (the Kate/Kdevelop plugin). But I have even better news, lumen will most likely be included in the next Kate and Kdevelop release!

January 31, 2014
On Friday, 31 January 2014 at 08:26:49 UTC, Brian Schott wrote:

> Textadept, Zeus, Sublime, and Kate are up to date as far as I know.

All the updated Zeus scripts can be found here:

http://www.zeusedit.com/z300/dcd_scripts.zip

These latest scripts also include the first cut of a Doc Comment
script.

While the dot, brace, intellisense and goto definition scripts
seem to be working fine, the Doc Comment script still requires
a few enhancements.

The Doc Comment script will require a binary change to the Zeus
editor itself and that should happen with the next release.

Details on how to use all these scripts can be found here:

http://www.zeusedit.com/zforum/viewtopic.php?t=7020


January 31, 2014
New Dscanner v0.1.0-beta2 deb package available at "d-apt":

http://d-apt.sourceforge.net/

-- 
Jordi Sayol
January 31, 2014
On Friday, 31 January 2014 at 08:26:49 UTC, Brian Schott wrote:
> P.S.
>
> I'm still waiting for some brave/foolish Emacs and Vim users to step up and update the DCD plugins for their favorite editors. Textadept, Zeus, Sublime, and Kate are up to date as far as I know.

I just completed the modifications to the Vim plugin and sent a pull request - https://github.com/Hackerpilot/DCD/pull/104.

I've also fixed the bug fra mentioned about only autocompleting after dots.
January 31, 2014
On 1/31/14, Brian Schott <briancschott@gmail.com> wrote:
> Textadept, Zeus, Sublime, and Kate are up to date as far as I know.

It doesn't really work for me using TextAdept 7.1 on Win7. A console window quicky pops up and vanishes when I press the period, or ctrl+enter (I'm assuming this is TA's autocomplete shortcut). The DCD server started and runs fine though.

But what I really want to do is use it with Scite, not TA.
January 31, 2014
The popen function in Lua on Windows has been a pain for a while now. I think until a better fix is added to Textadept's process handling code I'm going to have to say that TA is not supported on Windows.

If you do manage to make a SciTE plugin, let me know.


On Friday, 31 January 2014 at 22:26:04 UTC, Andrej Mitrovic wrote:
> On 1/31/14, Brian Schott <briancschott@gmail.com> wrote:
>> Textadept, Zeus, Sublime, and Kate are up to date as far as I
>> know.
>
> It doesn't really work for me using TextAdept 7.1 on Win7. A console
> window quicky pops up and vanishes when I press the period, or
> ctrl+enter (I'm assuming this is TA's autocomplete shortcut). The DCD
> server started and runs fine though.
>
> But what I really want to do is use it with Scite, not TA.