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

Merge pull request #1017 from josa42/fix-typo-guifont

Fix a typo
This commit is contained in:
Tae Won Ha 2023-11-06 19:13:48 +01:00 committed by GitHub
commit b7d39e8b42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -95,7 +95,7 @@ extension NvimView {
guard let newFont = FontUtils.font(fromVimFontSpec: fontSpec) else {
self.bridgeLogger.debug("Invalid specification for guifont '\(fontSpec)'")
self.signalError(code: 596, message: "Invalid font(s): gufont=\(fontSpec)")
self.signalError(code: 596, message: "Invalid font(s): guifont=\(fontSpec)")
self.signalRemoteOptionChange(RemoteOption.fromFont(self.font, forWideFont: wideFlag))
return
}