Skip to content

Commit

Permalink
feat(startify): show macOS and Windows kernel version
Browse files Browse the repository at this point in the history
  • Loading branch information
LER0ever committed Jun 1, 2017
1 parent 7895d72 commit 8f452c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/general/vim-startify.vim
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ if isdirectory(expand("~/.vim/bundle/vim-startify"))
let platform_string = ""
if WINDOWS()
let platform_icon = ""
let platform_string = WINVERSION()
let platform_string = WINVERSION() . " (" . NTVERSION() . ")"
elseif OSX()
let platform_icon = ""
let platform_string = "macOS " . OSXVERSION()
let platform_string = "macOS " . OSXVERSION() . " (Darwin " . KERNELVERSION() . ")"
elseif BSD()
let platform_icon = ""
let platform_string = "BSD"
Expand Down

0 comments on commit 8f452c6

Please sign in to comment.