dotfiles/iswsl.vim

10 lines
152 B
VimL
Raw Normal View History

2020-12-24 10:30:03 +00:00
function! IsWSL()
if has("unix")
let lines = readfile("/proc/version")
if lines[0] =~ "Microsoft"
return 1
endif
endif
return 0
endfunction