Skip to content
This repository has been archived by the owner on Apr 1, 2020. It is now read-only.

Commit

Permalink
Fix for 287, added missing commas. (#288)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bret Barkley authored and extr0py committed Mar 10, 2017
1 parent 1f3e65e commit bbcfee6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vim/core/oni-core-interop/plugin/init.vim
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ endfunction

function OniApiInfo()
if (has_key(api_info(),'version'))
call OniNotify(["api_info",api_info()['version']])
call OniNotify(["api_info",api_info()["version"]])
else
call OniNotify(["api_info",{api_level:0}])
call OniNotify(["api_info",{"api_level":0}])
endif
endfunction

0 comments on commit bbcfee6

Please sign in to comment.