digitalmars.D.announce - DCD 0.2.0 Released
- Brian Schott (18/18) Nov 13 2013 DCD 0.2.0 is released.
- Jussi Jumppanen (5/7) Nov 13 2013 FYI, the dcd_lookup.py Python script found on this page:
- Jacob Carlborg (4/22) Nov 13 2013 Awesome, keep up the good work.
- Philippe Sigaud (2/30) Nov 13 2013
- Jacob Carlborg (5/6) Nov 14 2013 The Dscanner submodule:
- Philippe Sigaud (1/1) Nov 14 2013 Thanks Mathias and Jacob!
- Mathias Lang (5/39) Nov 14 2013 A completion feature for emacs, I definitely need to try it ! Thanks for
- Jacek Furmankiewicz (5/5) Nov 15 2013 Hi, I noticed the vim setup requires Vundle, whereas I know a lot
- simendsjo (4/9) Nov 15 2013 I installed it with pathogen just fine. Just manually create a
- Jacek Furmankiewicz (3/3) Nov 15 2013 Thanks.
- Brian Schott (6/8) Nov 15 2013 A Vundle user created a pull request.
DCD 0.2.0 is released. Github Project: https://github.com/Hackerpilot/DCD Release Tag: https://github.com/Hackerpilot/DCD/tree/0.2.0 The D Completion Daemon is an auto-complete system for the D programming language that is not tied to any specific text editor or IDE. Modules exist for Textadept, Vim, Kate, Emacs, and Zeus. The 0.2.0 release closes 28 issues, which you can browse here: https://github.com/Hackerpilot/DCD/issues?milestone=2&state=closed. The highlights of this release are improved speed, reduced memory consumption, and the ability to get the location of the declaration of a symbol at the cursor location. Notes: * Only the Textadept module has support for go-to-declaration at the moment. Pull requests to update the other modules are welcome and encouraged. * Lua's io.popen is still a pain on Windows. It causes a command window to pop up when getting completions. I'll need to figure out a way around that for 0.3.0.
Nov 13 2013
On Wednesday, 13 November 2013 at 19:40:08 UTC, Brian Schott wrote:* Only the Textadept module has support for go-to-declaration at the moment.FYI, the dcd_lookup.py Python script found on this page: http://www.zeusedit.com/zforum/viewtopic.php?t=7020 implements the *go-to-declaration* feature for the Zeus IDE.
Nov 13 2013
On 2013-11-13 20:40, Brian Schott wrote:DCD 0.2.0 is released. Github Project: https://github.com/Hackerpilot/DCD Release Tag: https://github.com/Hackerpilot/DCD/tree/0.2.0 The D Completion Daemon is an auto-complete system for the D programming language that is not tied to any specific text editor or IDE. Modules exist for Textadept, Vim, Kate, Emacs, and Zeus. The 0.2.0 release closes 28 issues, which you can browse here: https://github.com/Hackerpilot/DCD/issues?milestone=2&state=closed. The highlights of this release are improved speed, reduced memory consumption, and the ability to get the location of the declaration of a symbol at the cursor location. Notes: * Only the Textadept module has support for go-to-declaration at the moment. Pull requests to update the other modules are welcome and encouraged. * Lua's io.popen is still a pain on Windows. It causes a command window to pop up when getting completions. I'll need to figure out a way around that for 0.3.0.Awesome, keep up the good work. -- /Jacob Carlborg
Nov 13 2013
This project imports stdx.d.(lexer/parser/ast). Where can I find these modules? On Thu, Nov 14, 2013 at 8:19 AM, Jacob Carlborg <doob me.com> wrote:On 2013-11-13 20:40, Brian Schott wrote:DCD 0.2.0 is released. Github Project: https://github.com/Hackerpilot/DCD Release Tag: https://github.com/Hackerpilot/DCD/tree/0.2.0 The D Completion Daemon is an auto-complete system for the D programming language that is not tied to any specific text editor or IDE. Modules exist for Textadept, Vim, Kate, Emacs, and Zeus. The 0.2.0 release closes 28 issues, which you can browse here: https://github.com/Hackerpilot/DCD/issues?milestone=2&state=closed. The highlights of this release are improved speed, reduced memory consumption, and the ability to get the location of the declaration of a symbol at the cursor location. Notes: * Only the Textadept module has support for go-to-declaration at the moment. Pull requests to update the other modules are welcome and encouraged. * Lua's io.popen is still a pain on Windows. It causes a command window to pop up when getting completions. I'll need to figure out a way around that for 0.3.0.Awesome, keep up the good work. -- /Jacob Carlborg
Nov 13 2013
On 2013-11-14 08:36, Philippe Sigaud wrote:This project imports stdx.d.(lexer/parser/ast). Where can I find these modules?The Dscanner submodule: https://github.com/Hackerpilot/Dscanner/tree/master/stdx/d -- /Jacob Carlborg
Nov 14 2013
A completion feature for emacs, I definitely need to try it ! Thanks for your work Brian. Philippe Sigaud: On the author's other project, DScanner ( https://github.com/Hackerpilot/Dscanner). 2013/11/14 Philippe Sigaud <philippe.sigaud gmail.com>This project imports stdx.d.(lexer/parser/ast). Where can I find these modules? On Thu, Nov 14, 2013 at 8:19 AM, Jacob Carlborg <doob me.com> wrote:On 2013-11-13 20:40, Brian Schott wrote:DCD 0.2.0 is released. Github Project: https://github.com/Hackerpilot/DCD Release Tag: https://github.com/Hackerpilot/DCD/tree/0.2.0 The D Completion Daemon is an auto-complete system for the D programming language that is not tied to any specific text editor or IDE. Modules exist for Textadept, Vim, Kate, Emacs, and Zeus. The 0.2.0 release closes 28 issues, which you can browse here: https://github.com/Hackerpilot/DCD/issues?milestone=2&state=closed. The highlights of this release are improved speed, reduced memory consumption, and the ability to get the location of the declaration of a symbol at the cursor location. Notes: * Only the Textadept module has support for go-to-declaration at the moment. Pull requests to update the other modules are welcome and encouraged. * Lua's io.popen is still a pain on Windows. It causes a command window to pop up when getting completions. I'll need to figure out a way around that for 0.3.0.Awesome, keep up the good work. -- /Jacob Carlborg
Nov 14 2013
Hi, I noticed the vim setup requires Vundle, whereas I know a lot of folks use pathogen to manage their vim plugins. is there any particular reason for Vundle over pathogen? Can the two co-exist together? thanks
Nov 15 2013
On Friday, 15 November 2013 at 23:25:31 UTC, Jacek Furmankiewicz wrote:Hi, I noticed the vim setup requires Vundle, whereas I know a lot of folks use pathogen to manage their vim plugins. is there any particular reason for Vundle over pathogen? Can the two co-exist together? thanksI installed it with pathogen just fine. Just manually create a symlink.
Nov 15 2013
Thanks. Maybe it would be worth adding a pathogen section to the docs to show how to set it up besides Vundle.
Nov 15 2013
On Friday, 15 November 2013 at 23:25:31 UTC, Jacek Furmankiewicz wrote:is there any particular reason for Vundle over pathogen?A Vundle user created a pull request.Can the two co-exist together?Vundle is available, but not required. If anyone has suggestions for improving the installation process or documentation for the Vim plugin, please create a pull request.
Nov 15 2013