[OT] Which IDE / Editor do you use?

Nick Sabalausky SeeWebsiteToContactMe at semitwist.com
Sun Sep 15 13:49:58 PDT 2013


On Sun, 15 Sep 2013 19:18:14 +0200
Joseph Rushton Wakeling <joseph.wakeling at webdrake.net> wrote:

> On 13/09/13 21:48, Namespace wrote:
> > Just out of interest.
> >
> > I use Sublime 2, Notepad++ and as IDE currently Mono-D. But I will
> > try this evening VisualD.
> 
> Vim, on Ubuntu. :-)
> 
> The actual reason is rather trivial.  I've always favoured a mixed
> tab-space indent style for code ("tabs for indentation, spaces for
> alignment"), as described here:
> http://www.emacswiki.org/emacs/SmartTabs
> 

I love that comic!

I actually did the same tab/space thing for awhile. But my editors
didn't really have a native understanding of it so it became manual
editing of invisible characters, so now I just avoid that style of
alignment regardless of tabs or spaces. Ie, instead of:

foobar(aaaaa, bbbbb, ccccc,
       dddd, eeeee, fffff);

I'll just do:

foobar(
    aaaaa, bbbbb, ccccc,
    dddd, eeeee, fffff
);

Not as pretty, but it works, it makes things simpler, Plus it avoids
the former style's tendency to wind up with gigantically-sized indents.



More information about the Digitalmars-d mailing list