On śro paź 25 2006, vim@vim.org wrote:
> Hello,
>
> for my font plug in I need to know which OS I am running on to choose an
> appropriate font.  Now when Sun Solaris where added to the list of OS I
> use I run into a little problem:  there is only "has('unix')" - but
> that's not good enough as Linux allows for anti alias fonts and Sun
> Solaris does not.
>
> Any ideas?

if has('unix')
        let os = system('uname -a')
endif

Depending on value of os proceed.

m.
        

Reply via email to