Closed bobzoller closed 8 years ago
$ gnvim -- foobar
also works as expected, and yields:
open -n -a Neovim --args --cwd /Users/bob foobar
oh, OSX 10.11.3
so one workaround is to add alias gnvim="gnvim --"
to your .bashrc or equivalent.
Try changing mode
from old
to new
https://github.com/rogual/neovim-dot-app/blob/master/gnvim#L10
duh, staring me right in the face. what's the story, is this an OSX version difference?
I can't really tell why that is there. I believe it should be just the new
way. That is the way that the atom editor does it. I asked about it in #275.
closing, #275 covers it.
to repo:
$ gnvim foobar
foobar
to fix: in gnvim helper, the command that ultimately gets run is:
open -a Neovim foobar --args --cwd /Users/bob
if I move
foobar
into--args
, it works as expected:open -a Neovim --args foobar --cwd /Users/bob
if this sounds like the correct fix and I'm not missing something, I'm happy to submit a PR.