On Thu, Jan 31, 2008 at 5:17 AM, Valery V. Vorotyntsev <valery.vv@gmail.com> wrote:
On 1/31/08, Brent Yorgey <byorgey@gmail.com> wrote:
>
> The catch? Having a bunch of layouts in a list like this requires
>  going back to wrapping everything with Layout existentials in user
> configs! =( This doesn't sound like much fun either.

Could you help me recollect the way it looked in user configs?

-       , layoutHook         = tiled ||| Mirror tiled ||| noBorders Full
+       , layoutHook         = (Layout tiled) ||| (Layout $ Mirror
tiled) ||| (Layout $ noBorders Full)

Something like this?

No, you would only need one wrapper, like

       , layoutHook         = Layout $ tiled ||| Mirror tiled ||| noBorders Full