Robin Allen
Robin Allen
It looks like the underscores are being stripped out by `parseargs` in `__init__.py`. It calls `int` on the argument to see if it's a number, but Python's `int` is quite...
Is this with https://github.com/rogual/neovim-dot-app/pull/109 applied, or on master?
Perhaps we could hide the window and show it once init is complete. Although then if any errors occur you're stuck with a hidden window.
There was an issue on Neovim — https://github.com/neovim/neovim/issues/2216 — but it doesn't sound like they're going to change this. Sourcing .vimrc twice is not ideal, but I can't think of...
Opened https://github.com/neovim/neovim/issues/3646 with Neovim, let's see what they say.
That's great news, thanks a bunch! I dont know of an API to get the selection so you might need to use vim->vim_command_output, and send it a command (as would...
What a bizarre omission.
It seems we wouldn't need upstream to know about `-f`; it'd just be a case of waiting until the Neovim instance terminates before letting the script exit.
Duplicate of https://github.com/rogual/neovim-dot-app/issues/216. Leaving this open because OP of that issue was happy with a workaround & it was closed.
Copying my response here for quick reference: > Two ways of doing this: > > (1) Get the change made in neovim itself, then no changes needed here. > >...