dotfiles/iswsl.vim

10 lines
167 B
VimL
Raw Permalink Normal View History

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