1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-09-17 12:07:08 +03:00

feat: provide neovim original binary

This commit is contained in:
SolaWing 2023-02-18 22:48:15 +08:00
parent e34d9765d2
commit 2edc970cdb
2 changed files with 3 additions and 2 deletions

@ -1 +1 @@
Subproject commit 5f8dd8c4a33203277cf6058f559383626411693d
Subproject commit 828d8db02ff366e2a8bfa6ad14ccb39a7f363cdb

View File

@ -278,7 +278,7 @@ final class UiBridge {
// We know that NvimServer is there.
process.launchPath = Bundle.module.url(forResource: "NvimServer", withExtension: nil)!.path
process
.arguments = [self.localServerName, self.remoteServerName, usesCustomTabBarArg] +
.arguments = ["--gui", self.localServerName, self.remoteServerName, usesCustomTabBarArg] +
["--headless"] + self.nvimArgs
self.log.debug(
@ -294,6 +294,7 @@ final class UiBridge {
let nvimCmd = [
// We know that NvimServer is there.
Bundle.module.url(forResource: "NvimServer", withExtension: nil)!.path,
"--gui",
self.localServerName,
self.remoteServerName,
self.usesCustomTabBar ? "1" : "0",