79 lines
2.4 KiB
VimL
79 lines
2.4 KiB
VimL
" =============== ============================================================
|
|
" Name : sys.vim
|
|
" Description : vim library
|
|
" Author : Zhao Cai <caizhaoff@gmail.com>
|
|
" HomePage : https://github.com/zhaocai/zl.vim
|
|
" Date Created : Mon 03 Sep 2012 09:05:14 AM EDT
|
|
" Last Modified : Thu 20 Sep 2012 04:25:15 PM EDT
|
|
" Tag : [ vim, library ]
|
|
" Copyright : © 2012 by Zhao Cai,
|
|
" Released under current GPL license.
|
|
" =============== ============================================================
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
" ============================================================================
|
|
" Environment: [[[1
|
|
" ============================================================================
|
|
|
|
function! GoldenView#zl#sys#ostype()
|
|
"--------- ------------------------------------------------
|
|
" Args :
|
|
" Return :
|
|
" - Mac, Windows, Linux, FreeBSD, SunOS, Unix,
|
|
" - undefined
|
|
" Raise :
|
|
"
|
|
" Example : >
|
|
" call GoldenView#zl#rc#set_default('g:os_type', GoldenView#zl#sys#ostype())
|
|
"--------- ------------------------------------------------
|
|
if (has("win32") || has("win95") || has("win64") || has("win16"))
|
|
let s:os_type = "Windows"
|
|
elseif has('mac')
|
|
let s:os_type="Mac"
|
|
elseif has('unix')
|
|
let arch = system("uname | tr -d '\n'")
|
|
if ( arch=="Linux" )
|
|
let s:os_type="Linux"
|
|
elseif ( arch=="FreeBSD" )
|
|
let s:os_type="FreeBSD"
|
|
elseif ( arch=="SunOS" )
|
|
let s:os_type="SunOS"
|
|
elseif ( arch=="Darwin" )
|
|
let s:os_type="Mac"
|
|
else
|
|
let s:os_type="Unix"
|
|
endif
|
|
endif
|
|
return s:os_type
|
|
endfunction
|
|
|
|
function! GoldenView#zl#sys#is_cygwin()
|
|
return s:is_cygwin
|
|
endfunction
|
|
|
|
function! GoldenView#zl#sys#is_win()
|
|
return s:os_type == 'Windows'
|
|
endfunction
|
|
function! GoldenView#zl#sys#is_mac()
|
|
return s:os_type == 'Mac'
|
|
endfunction
|
|
function! GoldenView#zl#sys#is_linux()
|
|
return s:os_type == 'Linux'
|
|
endfunction
|
|
|
|
let s:os_type = GoldenView#zl#sys#ostype()
|
|
let s:is_cygwin = has('win32unix')
|
|
|
|
" ============================================================================
|
|
" Modeline: [[[1
|
|
" ============================================================================
|
|
" vim: set ft=vim ts=4 sw=4 tw=78 fdm=marker fmr=[[[,]]] fdl=1 :
|