1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-23 19:21:53 +03:00

Remove unused field

This commit is contained in:
Tae Won Ha 2023-12-16 19:22:06 +01:00
parent ecd9513d43
commit 0a170cebdb
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44
2 changed files with 0 additions and 11 deletions

View File

@ -67,9 +67,6 @@ extension NvimView {
private func launchNeoVim(_ size: Size) {
self.log.info("=== Starting neovim...")
let sockPath = self.bridge.listenAddress
self.log.info("NVIM_LISTEN_ADDRESS=\(sockPath)")
let inPipe: Pipe, outPipe: Pipe, errorPipe: Pipe
do {

View File

@ -71,9 +71,6 @@ final class UiBridge {
private func launchNvimUsingLoginShellEnv() throws -> (Pipe, Pipe, Pipe) {
var env = self.envDict
env["NVIM_LISTEN_ADDRESS"] = self.listenAddress
self.log.debug("Socket: \(self.listenAddress)")
let inPipe = Pipe()
let outPipe = Pipe()
@ -131,11 +128,6 @@ final class UiBridge {
private var initialHeight = 20
private let disposeBag = DisposeBag()
var listenAddress: String {
URL(fileURLWithPath: NSTemporaryDirectory())
.appendingPathComponent("vimr_\(self.uuid).sock").path
}
}
private let timeout = 5