By registering with us, you'll be able to discuss, share and private message with other members of our community.
SignUp Now!I'm keeping this simple to start. Is there any way to do "If(somecondition,dosomething,dosomethingelse)" in an alias?
v:\> alias zz `%@if[%q==1,echo foo,echo bar]`
v:\> set q=1
v:\> zz
foo
v:\> set q=2
v:\> zz
bar