-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Execute asynchronously and allow adding extra arguments #9
base: master
Are you sure you want to change the base?
Conversation
This looks nice! Thanks for figuring out the sync/async thing. I can confirm it works on linux with gvim too. I have some reservation about the |
The only other useful options I see for
Further improvements may include being able to add some variables to the text field to run an instance of Vim per project with something like Nonetheless I understand your concerns and if you prefer to keep it more controlled I can remove the text field and add another checkbox for |
Would love this feature merged in |
There are two separate features in this PR, and I'm not sure which @huyz is referring to. It seems that this PR doesn't currently work. When I run it locally and don't set the |
I was referring to the async part. |
My bad, this last commit should fix this issue |
I wanted to run one instance of Vim and switch between both editors without having to close Vim every time.
To achieve this I've added the
synchronous
checkbox to useexec
instead ofexecSync
and theextraArgs
field to add--servername vscode --remote-silent
to the parameters so only one instance of Vim is used.I've just tested it with MacVim but seems to work nicely.