1
1
mirror of https://github.com/qvacua/vimr.git synced 2025-01-01 18:23:48 +03:00
vimr/VimR/Application.swift

37 lines
844 B
Swift
Raw Normal View History

/**
* Tae Won Ha - http://taewon.de - @hataewon
* See LICENSE
*/
import Cocoa
2017-06-15 19:03:25 +03:00
import Sparkle
2017-08-29 20:01:00 +03:00
let fileLog = LogContext.fileLogger(as: "VimR-file", with: URL(fileURLWithPath: "/tmp/vimr.log"))
let stdoutLog = LogContext.stdoutLogger(as: "VimR-stdout")
class Application: NSApplication {
override init() {
setPressAndHoldSetting()
2016-08-03 21:55:19 +03:00
super.init()
}
required init?(coder: NSCoder) {
setPressAndHoldSetting()
super.init(coder: coder)
}
2016-08-26 10:19:40 +03:00
2016-09-25 19:29:42 +03:00
@IBAction override func showHelp(_: Any?) {
2016-09-25 18:50:33 +03:00
NSWorkspace.shared().open(URL(string: "https://github.com/qvacua/vimr/wiki")!)
2016-08-26 10:19:40 +03:00
}
}
fileprivate func setPressAndHoldSetting() {
// disable default press and hold behavior (copied from MacVim)
CFPreferencesSetAppValue(
"ApplePressAndHoldEnabled" as NSString,
"NO" as NSString,
kCFPreferencesCurrentApplication
)
}