Skip to content
This repository was archived by the owner on Mar 5, 2019. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion plugin/browser-refresh.vim
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,13 @@ endif
let g:loaded_browserrefresh = 1

" Scoot if not in mac
if !has("mac")
if !has("unix")
finish
else
if !system('uname')=~'Darwin'
echo "Sorry, now it works only for mac"
finish
endif
endif

" Set to all if a default browser isn't set
Expand Down