Re: check if guioption is set

2006-07-29 Thread Yakov Lerner
On 7/29/06, Kim Schulz <[EMAIL PROTECTED]> wrote: hi is there a way to check if a guioption is set. normally I would use somthing like: if guioptions == m :set guioptions-=m:else:set guioptions+=m:endif but since guioptions is a sequence of options and not just a single letter, this wont work.

Re: check if guioption is set

2006-07-29 Thread A.J.Mechelynck
Kim Schulz wrote: hi is there a way to check if a guioption is set. normally I would use somthing like: if guioptions == m :set guioptions-=m:else:set guioptions+=m:endif but since guioptions is a sequence of options and not just a single letter, this wont work. So how do I check if it is set?

check if guioption is set

2006-07-29 Thread Kim Schulz
hi is there a way to check if a guioption is set. normally I would use somthing like: if guioptions == m :set guioptions-=m:else:set guioptions+=m:endif but since guioptions is a sequence of options and not just a single letter, this wont work. So how do I check if it is set? I was looking for so