1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-24 22:33:52 +03:00

Adapt to new API argument name

This commit is contained in:
Tae Won Ha 2018-01-27 12:54:21 +01:00
parent f47174b69e
commit 6ff16ffda9

View File

@ -200,7 +200,7 @@ extension NvimView {
}
public func vimOutput(of command: String) -> String {
return self.nvim.commandOutput(str: command).value ?? ""
return self.nvim.commandOutput(command: command).value ?? ""
}
public func cursorGo(to position: Position) {