mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 03:25:03 +03:00
31 lines
647 B
Swift
31 lines
647 B
Swift
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
import Cocoa
|
|
|
|
class Application: NSApplication {
|
|
|
|
override init() {
|
|
// Do very early initializtion here
|
|
|
|
// disable default press and hold behavior (copied from MacVim)
|
|
CFPreferencesSetAppValue(
|
|
"ApplePressAndHoldEnabled" as NSString,
|
|
"NO" as NSString,
|
|
kCFPreferencesCurrentApplication
|
|
)
|
|
|
|
super.init()
|
|
}
|
|
|
|
required init?(coder: NSCoder) {
|
|
fatalError("init(coder:) has not been implemented")
|
|
}
|
|
|
|
@IBAction override func showHelp(_: Any?) {
|
|
NSWorkspace.shared().open(URL(string: "https://github.com/qvacua/vimr/wiki")!)
|
|
}
|
|
}
|