From e1626a8ba0a7bfcb0cf6f75023912f6cb5be4783 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Sat, 9 Nov 2019 19:39:26 +0100 Subject: [PATCH] -d: don't open each filename twice Fixes https://github.com/mhinz/neovim-remote/issues/123 --- nvr/nvr.py | 1 + 1 file changed, 1 insertion(+) diff --git a/nvr/nvr.py b/nvr/nvr.py index 214947b..f1f9f0b 100644 --- a/nvr/nvr.py +++ b/nvr/nvr.py @@ -442,6 +442,7 @@ def main(argv=sys.argv, env=os.environ): elif arguments and options.d: # Emulate `vim -d`. options.O = arguments + arguments = [] if options.remote_send: nvr.server.input(options.remote_send)