rogual / neovim-dot-app

Mac OS X GUI for Neovim
1.13k stars 62 forks source link

gnvim script no longer makes Neovim open files twice #244

Closed hakamadare closed 8 years ago

hakamadare commented 8 years ago

Fixes #204. Props to @dearrrfish for the fix!

bambu commented 8 years ago

The bug is in app.mm and not in the gnvim file. --args is necessary for the case where you want to pass arguments to nvim directly. (Currently the getopts prevents it from passing arguments properly but the following should work with gnvim)

gnvim -- -p File1 File2

PR #267 should resolve your original issue

hakamadare commented 8 years ago

yup, looks like that fixed it. thanks!