top | item 46917523

(no title)

james2doyle | 23 days ago

Makes me wish more apps had feature toggles

discuss

order

dotancohen|23 days ago

VIM does this perfectly. Not a single feature is exposed to the user. Every feature the user might ever want is supported, they need just Google for which keyboard incantation to invoke it.

goosejuice|23 days ago

Or follow the directions on the startup screen and type :help.

roberthahn|23 days ago

The testing that would be required to support toggles would be for 2^n. I’m not sure that’s a good solution.

wavemode|23 days ago

> The testing that would be required to support toggles would be for 2^n

I don't think that's really true, unless the behavior of each toggle is tightly coupled to the behavior each other toggle.

Case in point - most mature apps nowadays do have hundreds of toggles for various settings and features.

dlcarrier|23 days ago

Makes me wish more apps followed the UNIX model of separating every feature into separate applications with well documented interfaces that only change when new features absolutely require it and otherwise are only updated for security patches.