October 30, 2014
On Wed, Oct 29, 2014 at 12:56:03PM -0700, H. S. Teoh via Digitalmars-d wrote:
> On Wed, Oct 29, 2014 at 07:38:14PM +0000, dan via Digitalmars-d wrote:
> > What IDE/EDITOR do you use for D? What plugins if you use Vim?
> 
> I use plain vanilla vim in text mode with no plugins (not even syntax
> highlighting).
[...]

Actually, I take that back. Apparently my default vim installation comes with a bunch of plugins that I'm not even aware of existed:

:scriptnames
1: /mnt/1/usr/share/vim/vimrc
2: /mnt/1/usr/share/vim/vim74/debian.vim
3: ~/.vimrc
4: /mnt/1/usr/share/vim/vim74/filetype.vim
5: /mnt/1/usr/share/vim/vim74/ftplugin.vim
6: /mnt/1/usr/share/vim/vim74/plugin/getscriptPlugin.vim
7: /mnt/1/usr/share/vim/vim74/plugin/gzip.vim
8: /mnt/1/usr/share/vim/vim74/plugin/matchparen.vim
9: /mnt/1/usr/share/vim/vim74/plugin/netrwPlugin.vim
10: /mnt/1/usr/share/vim/vim74/plugin/rrhelper.vim
11: /mnt/1/usr/share/vim/vim74/plugin/spellfile.vim
12: /mnt/1/usr/share/vim/vim74/plugin/tarPlugin.vim
13: /mnt/1/usr/share/vim/vim74/plugin/tohtml.vim
14: /mnt/1/usr/share/vim/vim74/plugin/vimballPlugin.vim
15: /mnt/1/usr/share/vim/vim74/plugin/zipPlugin.vim
16: /mnt/1/usr/share/vim/vim74/ftplugin/mail.vim

Except that the only plugin I can see that I really use is matchparen. My ~/.vimrc contains some keyboard remappings so that command keys continue to map to the same physical keys when I switch the keyboard layout to a different language.  And I do use ctags every now and then for navigating between functions.

But other than that, pretty minimalistic.


T

-- 
If you're not part of the solution, you're part of the precipitate.
October 30, 2014
On Wednesday, 29 October 2014 at 19:38:16 UTC, dan wrote:
> What IDE/EDITOR do you use for D? What plugins if you use Vim?

Visual Studio + VisualD. That way everyone thinks I'm doing C++ at work (I'm the only one doing C++ in a big Java shop!).

Oh, and of course Notepad2 (as Total Commander Editor) for quick-and-dirty editing/viewing/whatever!
October 30, 2014
On Thu, 30 Oct 2014 09:18:52 +0000
John Colvin via Digitalmars-d <digitalmars-d@puremagic.com> wrote:

> I think there is the concept of an IDE out there that I would like, but to my knowledge it hasn't been made.
so the only way to have it is to write it! ;-)
i'm in a lenghty process of doing this now. but this will not be "IDE",
this will be component programming environment, which just includes
extensible text editor and compiler as it's components.


October 30, 2014
On Wednesday, 29 October 2014 at 19:38:16 UTC, dan wrote:
> What IDE/EDITOR do you use for D? What plugins if you use Vim?

MonoD, so far best that I could find.
October 30, 2014
On Thursday, 30 October 2014 at 16:58:49 UTC, H. S. Teoh via Digitalmars-d wrote:
> And I do use ctags every now and then for navigating between functions.

In case you didn't know, dscanner has a "--ctags" flag for generating tags from D files.
October 30, 2014
On Thu, Oct 30, 2014 at 08:27:14PM +0000, Brian Schott via Digitalmars-d wrote:
> On Thursday, 30 October 2014 at 16:58:49 UTC, H. S. Teoh via Digitalmars-d wrote:
> >And I do use ctags every now and then for navigating between functions.
> 
> In case you didn't know, dscanner has a "--ctags" flag for generating tags from D files.

Nice!! And no, I didn't know. Thanks for the tip!


T

-- 
Дерево держится корнями, а человек - друзьями.
October 31, 2014
On 2014-10-29 15:38, dan wrote:
> What IDE/EDITOR do you use for D? What plugins if you use Vim?

Mono-D. It has a light & fast ui, auto-complete, and integrates perfectly with dub and git

http://wiki.dlang.org/Mono-D
October 31, 2014
On Wednesday, 29 October 2014 at 19:38:16 UTC, dan wrote:
> What IDE/EDITOR do you use for D? What plugins if you use Vim?
Vim without plugins (just syntax highlighting) for short scripts. Geany for bigger projects.
October 31, 2014
On Wednesday, 29 October 2014 at 19:38:16 UTC, dan wrote:
> What IDE/EDITOR do you use for D? What plugins if you use Vim?

Mainly Mono-D; tempted by vim, but as someone wrote, it takes time to "grokke" it...

---
Paolo
November 01, 2014
On Wednesday, October 29, 2014 19:38:14 dan via Digitalmars-d wrote:
> What IDE/EDITOR do you use for D? What plugins if you use Vim?

I Use gvim with most of the GUI elements turned off (I'm just trying to get a window for it separate from the console, which is why I don't use vim). The only thing that I use with it that's D-specific is the D syntax file.

- Jonathan M Davis