daa84 / neovim-lib

Rust library for Neovim clients
GNU Lesser General Public License v3.0
192 stars 26 forks source link

Update new_child to support macos #13

Closed ghost closed 6 years ago

ghost commented 6 years ago

I haven't fully tested this, but as far as I am aware it should be all good!

daa84 commented 6 years ago

Better to rewrite this to

if cfg!(target_os = "windows")
   nvim.exe
else 
  nvim 
ghost commented 6 years ago

Ahh yes, of course!

daa84 commented 6 years ago

Thanks